/* 1.Variables */

:root {
    /* Background colors */
    --weather-bg-color: #131a27;
    --weather-block-bg-color: #283443;

    /* Colors */
    --weather-block-h2-color: #5f697a;
    --weather-block-color: #5f697a;
    --weather-block-color2: #8892a1;




}


/* 2.Reset */

* {
    margin: 0;
    padding: 0;
}

/* html,body {
    width: 100vw;
} */


.weather__body {
    width: 100vw;
    background-color: var(--weather-bg-color);
}

.weather__main {
    width: 90%;
    display: flex;
    flex-direction: column;
    margin: auto;
}

.hero {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0 40px 0;
}

.city__hours, .city__info, .cities {
    width: 100%;
    border-radius: 10px;
    background-color: var(--weather-block-bg-color);
    margin: 20px 0;
}

.city__hours {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
}

.city__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.cities {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}




/*  */

.weather {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
    background: transparent;
    padding: 30px 0;
}

.weather h1 {
    color: var(--weather-block-color2);
}

.weather h2 {
    color: var(--weather-block-color);
}

.hero h2, .hero span {
    color: var(--weather-block-color);
}

.hours__div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hours__item {
    border: 1px solid var(--weather-block-color2);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 10px;
    color: var(--weather-block-color);
}

.hours__h2 {
    color: var(--weather-block-color2);
}


.info__h2 {
    color: var(--weather-block-color2);

}

.info__div {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-auto-rows: 1fr;
    gap: 20px;
}

.info__item {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--weather-block-color2);
    border-radius: 5px;
    flex-direction: column;
}

.info__item h3 {
    color: var(--weather-block-color2);
}

.info__item span {
    color: var(--weather-block-color);
}

.cities__h2 {
    color: var(--weather-block-color2);
}

.other_city {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 90%;
    border: 1px solid var(--weather-block-color2);
    margin-bottom: 10px;
    padding: 15px 0;
    border-radius: 15px;
}

.other_city *{
    color: var(--weather-block-color);
}

@media (max-width:400px) {
    .info__div {
        grid-template-columns: 1fr;
    }
}
