/*ELEMENTS*/
html{
    height: 100%;
}

body {
    background: linear-gradient(#5a7b99, #466076, #324455, #1e2933, #141b22);
    background-repeat: no-repeat;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

a{
    text-decoration: none;
    color: #fff;
}

main{
    height: 630px;
    background-color: #ffffff47;
    margin: 0 auto;
    margin-top: 25px;
    width: 75%;
    border-radius: 25px;
}

h2{
    color: #fff;
}
/*CLASSES*/
.footer{
    display: flex;
    justify-content: center;
    padding-top: 20px;
}
.header{
    padding-top: 15px;
}
.search-input{
    margin-left: 15px;
    padding: 10px 15px;
    border: 2px solid #ccc;
    border-radius: 30px 0 0 30px;
    outline: none;
    font-size: 16px;
    width: 70%;
}

.search-btn{
    padding: 12px 15px;
    border: none;
    border-radius: 0 30px 30px 0;
    background-color: #5a7b99;
    cursor: pointer;
    color: #fff;
}

.main-section{
    display: flex;
    justify-content: space-evenly;
    padding-top: 20px;
}

.city-details{
    margin-left: 15px;
    color: #fff;
}

.city-name{
    font-size: 32px;
}

.city-date{
    font-size: 20px;
}

.city-temp{
    color: #fff;
    font-size: 64px;
}

.temp-unit{
    font-size: 32px;
}

.weather-info{
    display: flex;
    justify-content: space-evenly;
    margin-left: 15px;
    margin-right: 15px;
    padding-top: 30px;
}

.weather-info p {
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: 100;
}

.weather-humidity{
    background-color: #1e2933;
    border-radius: 10px;
    width: 150px;
    padding-left: 15px;
    padding-right: 15px;
    height: 150px;
}

.weather-wind{
    background-color: #1e2933;
    border-radius: 10px;
    width: 150px;
    padding-left: 15px;
    padding-right: 15px;
    height: 150px;
}
.weather-description{
    background-color: #1e2933;
    border-radius: 10px;
    width: 150px;
    padding-left: 15px;
    padding-right: 15px;
    height: 150px;
}

.weather-icon{
    width: 80px;
    height: 80px;
    margin-top: 20px;
}

.weather-forecast-date{
    text-align: center;
    color: #fff;
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 10px;
}

.weather-forecast-icon{
    font-size: 38px;
    text-align: center;
}

.weather-forecast-temperatures{
    text-align: center;
    color: #16202a;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.weather-forecast-temperature{
    padding: 0 8px;
}

.weather-forecast{
    display: flex;
    justify-content: space-around;
    padding-top: 25px;
}
