main {
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: center;
    width: 100%;
    max-height: 600px;
}

.card-current-day-container {
    background-color: rgb(60, 137, 253);
    height: fit-content;
    width: 300px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    transition: height 0.2s ease;
}

.current-day-big {
    height: 150px;
    width: 150px;
    background-color: rgb(255, 255, 255);
}

.current-day {
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.infos-day {
    width: 185px;
}

.infos-day, .clock {
    height: fit-content;
    min-width: 150px;
    background-color: rgb(255, 255, 255);
    border-radius: 15px;
    margin-top: 15px;
}

.infos-day h1, .clock h1 {
    margin: 0;
    text-align: center;
}

.day {
    font-size: 90px;
    font-weight: 700;
    color: rgb(82, 82, 82);
}

.day-week-card, .month, .year {
    color: rgb(82, 82, 82);
}

.month {
    font-size: 25px;
}

.day-week-card {
    font-size: 30px;
}

.hidden-clock {
    display: none;
}

.clock {
    padding-left: 20px;
    padding-right: 20px;
    padding: 12px 0;
}

.time {
    color: rgb(159, 159, 159);
}
