/* start global rules  */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family:'Open Sans', sans-serif;
}
*:focus{
    outline: none;
}
/* end global rules  */
/* start nav bar  */
.home{
    position: relative;
    min-height: 100vh;
}
.home .weather-site{
    width: 400px;
    height: 400px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.site-title{
    display: flex;
    align-items: center;
}
.site-title i{
    margin: 0px 9px;
    font-size: 32px;
    color: rgb(221, 217, 208);
}
.site-title span{
    font-size: 28px;
    color:whitesmoke;
    font-style: oblique;
    font-family: 'FontAwesome';
}
nav input{
    width: 245px;
    height: 40px;
    border-radius: 10px;
    border: 0px solid black;
    background-color: whitesmoke;
    padding-left: 15px;
    transition: all 0.3s;
}
nav input:focus{
    width: 270px;
}
nav input:focus::placeholder{
    opacity: 0;
}
nav{
    z-index: 9999999;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 0 10px #e9edc9;
    padding: 12px 50px;
    background-color: #265B83;
}
@media(max-width:767px){
    .site-title i{
        margin: 0px 4px;
        font-size: 20px;
    }
    .site-title span{
        font-size: 18px;
    }
    nav{
        padding: 9px 7px;
    }
    nav input{
        width: 150px;
        padding-left: 12px;
        font-size: 14px;
    }
    nav input:focus{
        width: 170px;
    }
    .home .weather-site{
        width: 250px;
        height: 250px;
        border-radius: 50%;
        top: 70%;
    }
}
/* end nav bar  */
.home .row{
    justify-content: space-between;
}
.home .container{
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
/* start cities  */
.home .row .cardOne .icon{
    margin: 5px 25px;
}
.home .row .cardOne .icon i{
    color: #265B83;
}
.home .row .cardOne .weatherIcon img{
    width: 40px;
}
.home .row .cardOne .text{
    margin-bottom: 0px;
    font-style: italic;
    font-size: 1.1rem;
}
.home .row .cardOne .text span{
    font-weight: 600;
    font-style: normal;
}
.home .row .cardOne .country{
    font-size: 1.5rem;
    font-weight: 600;
    color: #265B83;
}
.home .row .cardOne .about{
    font-size: 1.29rem;
    background-color: rgba(38, 91, 131,0.5);
    padding: 5px;
    border-radius: 9px;
    display: block;
    margin-bottom: 10px;
}
.home .row .cardOne .temp{
    font-weight: 600;
}
.home .row .cardOne .name{
    color: black;
    font-size: 1.3rem;
    margin-right: 5px;
}
.home .row .cardOne .rain,.home .row .cardOne .windSpeed,.home .row .cardOne .windDirection{
    font-size: 1.1rem;
    font-weight: 550;
}




.home .row .cardOne .icon1{
    margin: 5px 25px;
}
.home .row .cardOne .icon1 i{
    color: #265B83;
}
.home .row .cardOne .weatherIcon1 img{
    width: 40px;
}
.home .row .cardOne .text1{
    margin-bottom: 0px;
    font-style: italic;
    font-size: 1.1rem;
}
.home .row .cardOne .text1 span{
    font-weight: 600;
    font-style: normal;
}
.home .row .cardOne .country1{
    font-size: 1.5rem;
    font-weight: 600;
    color: #265B83;
}
.home .row .cardOne .about1{
    font-size: 1.29rem;
    background-color: rgba(38, 91, 131,0.5);
    padding: 5px;
    border-radius: 9px;
    display: block;
    margin-bottom: 10px;
}
.home .row .cardOne .temp1{
    font-weight: 600;
}
.home .row .cardOne .name1{
    color: black;
    font-size: 1.3rem;
    margin-right: 5px;
}
.home .row .cardOne .rain1,.home .row .cardOne .windSpeed1,.home .row .cardOne .windDirection1{
    font-size: 1.1rem;
    font-weight: 550;
}
@media(max-width:767px){
    .home .container{
        position: absolute;
        left: 0;
        right: 0;
        top: 73%;
    }
    .home .one{
        margin-bottom: 19rem;
    }
    .home .container .row{
        min-height: 100vh;
    }
}
/* end cities  */