@media (max-width: 900px) {
.dashboard {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px;
}
.left-side{
    align-items: center;
    text-align: center;
    margin-right: 0;
}
.weather-box{
    max-width: 600px;
    padding: 30px 60px;
    margin: 0 auto;
}

}

@media (max-width: 600px) {
body {
    align-items: flex-start;
    padding-top: 120px ;
}
.date {
        font-size: 36px;
}
.time {
        font-size: 40px;
}
.nameday {
        font-size: 22px;
}
.w-city {
        font-size: 40px;
}
.w-temp {
        font-size: 42px;
}
.w-desc {
        font-size: 28px;
}
.weather-box {
    flex-direction: column;
    text-align: center;
    padding: 30px;
    border-radius: 30px;
    width: 260px;
}
.w-icon {
        width: 140px;
        height: 140px;
        margin-left: 0;
}
#city-select {
        top: 30px;
        right: 20px;
        font-size: 16px;
        padding: 10px 12px;
}
.theme {
        top: 20px;
        left: 20px;
}

.theme button {
        width: 80px;
        font-size: 16px;
}

}
@media (hover: hover) and (pointer: fine) {
    #city-select:hover {
        transform: scale(1.05);
        border: 1px solid #5c8ce0;
    }
}
#city-select:active {
    transform: scale(0.96);
}
#city-select {
    transition: transform 0.2s ease, border 0.2s ease;
}







