body {
    font-family: 'Consolas', 'Courier New', monospace;
    background-color: #0C1B33;
    color: #EE1B49;
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #0C1B33;
    color: #EE1B49;
    text-align: center;
    z-index: 1000;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
}

#dynamic-text {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    font-family: 'Consolas', 'Courier New', monospace;
    white-space: pre; 
}

pre {
    margin: 0;
    text-align: center;
}

#image-container {
    margin-bottom: 20px;
}

#image {
    margin-top: 150px;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 250px;
    object-fit: contain;
}


#timer {
    font-size: 2em;
    color: #EE1B49;
    text-align: center;
}

#message {
    font-size: 1.5em;
    color: #EE1B49;
    text-align: center;
    margin-top: 10px;
}

#dots {
    font-size: 1.5em;
    color: #EE1B49;
}

@media (max-width: 600px) {
    #image {
        width: 150px;
        height: 150px;
    }
    
    #timer {
        font-size: 1.5em;
    }
    
    #message {
        font-size: 1.2em;
    }
    
    #dots {
        font-size: 1.2em;
    }
}
