body {
    background-image: url(./backg.jpg);
    background-size: cover;
    background-position: center;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
    margin: 0;
}

.calendar-container {
    text-align: center;
    height: 50%;
    padding: 20px;
    width: 300px;
}

h1 {
    margin-bottom: 30px;
    font-size: 50px;
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif;
}

#countdown {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-box span {
    font-size: 2em;
    font-weight: bold;
}

.time-box p {
    margin: 5px 0 0 0;
}

@media (max-width: 480px) {
    h1 {
        font-size: 35px;
    }
}