body {
    background-color: #FFFBF8;
    font-family: 'Fredoka One', sans-serif;
    color: #FF8FAB;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.25rem;
    color: #FFB7C3;
}

.countdown {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.countdown-box {
    font-weight: bold;
    text-align: center;
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #FFF2F8;
    color: #FF69B4;
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
}

.label {
    font-size: 0.7rem;
    color: #FF8FAB;
    margin-top: 0.25rem;
}

#audio-player {
    margin-top: 20px;
    border-radius: 15px;
    background-color: #FFF2F8;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 300px;
    padding: 10px;
    z-index: 1;
}

#audio-player:focus {
    outline: none;
    box-shadow: 0 0 10px 3px rgba(255, 182, 193, 0.6);
}

.footer {
    margin-top: 2rem;
    font-size: 1rem;
    color: #FF8FAB;
}

.footer p {
    background: #FFF2F8;
    padding: 0.5rem;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {
    .countdown {
        flex-wrap: wrap;
        gap: 0.25rem;
        justify-content: center;
    }


    .countdown-box {
        width: 70px;
        height: 70px;
        font-size: 1.2rem;
    }

    .label {
        font-size: 0.6rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1rem;
    }
} 
