body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-image: url('wedding.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
    text-shadow: 1px 1px 2px black;
}

#countdown-container {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    max-width: 90%;
    box-sizing: border-box;
}
/*
#countdown-container {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}
*/
h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

#countdown {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 1.5rem;
}

#countdown div {
    margin: 0 15px;
    flex: 1 1 100px;
}

#countdown span {
    font-size: 3rem;
}

p {
    margin-top: 20px;
    font-size: 1rem;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    #countdown {
        font-size: 1.2rem;
    }
    #countdown span {
        font-size: 2.5rem;
    }
    p {
        font-size: 0.9rem;
    }
}

