header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #000000;
    color: #ffffff;
}

body { 
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 72px; 
    justify-content: flex-start;
    align-items: center;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    background: #000000;
    overflow: auto; 
}

.wip-message {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.img-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1.25rem 0 2rem;
    position: relative;
    z-index: 10;
}

img {
    max-width: 400px;
    height: auto;  
    border-radius: 8px;
    position: relative;
    z-index: 10;
}

.header-img {
    width: 60px;   
    height: auto;
}

footer {
    width: 100%;
    text-align: center;
    color: #888;
    font-size: 1rem;
    padding: 1rem 0;
    position: relative;
    z-index: 10;
}

.snowflake {
    position: fixed;
    top: -10px;
    color: white;
    pointer-events: none;
    z-index: 1;
    animation: fall linear forwards;
}

@keyframes fall {
    to {
        transform: translateY(110vh);
    }
}

.audio-control {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0);
    border: 2px solid rgba(0, 0, 0, 0);;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0);
}

.audio-control:hover {
    background-color: rgb(0, 0, 0);
    transform: scale(1.1);
}

.audio-control svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}
