@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');


* {
    margin: 0;
    padding: 0;
}

body {
    font-family:'Roboto';
    background: url('./img/background-img.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    color: rgb(29, 29, 29);
}

/*** MOBILE FIRST ***/

/* MAIN CONTAINER */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* TOP SECTION*/
.top {
    padding: 10px;
    width: 100%;
}

.city-data {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

#temperature {
    font-size: 70px;
    font-weight: lighter;
}

#city {
    font-size: 40px;
}

#typeOfWeather {
    text-transform: uppercase;
}

.sunrise-and-sunset {
    font-size: 16px;
    display: flex;
    justify-content: space-around;
}

/* BOTTOM SECTION - 5-DAYS FORECAST*/
.bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;

}

.forecast-title {
    display: none;
}

.forecast-data {
    display: flex;
    flex-direction: column;
    border-radius: 25px;
    margin: 10px 0;
    padding: 10px;
    align-items: center;
    background-color: rgba(207, 207, 207, 0.404);
    width: 100%;
}


.forecast-description{
    text-transform: uppercase;
    font-size: 14px;
}

.forecast-day {
    font-size: 30px;
}

/* Other city section starts here */
.other-city-title {
    padding: 20px;
    font-weight: bold;
    display: block;
    font-size: 40px;
    color: rgb(29, 29, 29);
}

.other-cities {
    display: flex;
    flex-direction: column;
    border-radius: 25px;
    padding: 10px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.other-city {
    font-size: 30px;
}

.other-city-description {
    text-transform: uppercase;
    font-size: 14px;
}

.other-city-temp {
    font-size: 28px;
}


.other-cities-box {
    display: flex;
    flex-direction: column;
    border-radius: 25px;
    align-items: center;
    padding: 10px;
    width: 100%;
    margin: 10px 0;
    background-color: rgba(207, 207, 207, 0.404);
}

/* FOOTER STYLING */ 

.footer {
    display: flex;
    width: 100%;
    background-color: rgba(207, 207, 207, 0.404);
    color: white;
    text-align: center;
    align-items: center;
    margin-top: 30px;
}

.footer-paragraphs {
    width: 100%;
    padding: 30px;
}




/*** MEDIA QUERIES ***/

/*tablet*/
@media (min-width:667px) and (max-width:1024px) {
    .top {
        width: 80%;
    }

    .sunrise-and-sunset {
        font-size: 30px;
    }

    .city-data img {
        width: 300px;
    }

    .bottom {
        width: 60%;
    }

    #city {
        font-size: 50px;
    }

    .other-cities {
        flex-direction: column;
        align-items: center;
    }
    .other-cities {
        width: 60%;
    }

}

/*desktop*/

@media (min-width: 1025px) {
    .bottom {
        flex-direction: row;
        /* max-width: 1700px;
        min-width: auto; */
        width: 80%;
    }

    .sunrise-and-sunset {
        font-size: 20px;
    }

    .forecast-title {
        padding: 20px;
        font-weight: bold;
        display: block;
        font-size: 40px;
    }

    .forecast-data {
        margin: 4px;
    }

    .top {
        width: 600px;
    }

    .other-cities {
        flex-direction: row;
        width: 80%;
    }

    .other-cities-box {
        margin: 10px;
        width: 400px;
    }


}