*{
    margin: 0px 0px;
    padding: 0px 0px;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
}
body{
    background-color: #7ADAF5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}


header{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color:hsl(194, 49%, 32%, 0.11);
    padding: 10px 0px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    letter-spacing: 4px;

}
header h1{
    font-size: 1.50em;
    color:#FFF9F9;
}
header svg{
    width: 50px;
    height: 50px;
    margin-left: 20px;
}


.input-div{
    width: 90%;
    margin:50px 0px 50px 0px;
    display: flex;
    justify-content: space-evenly;
}

input{
    width:80%;
    height: 50px;
    border-radius: 10px;
    border: none;
    padding: 0px 30px;
    color:lightgrey;

}

::placeholder{
    color: lightgrey;
}
input:focus{
    outline:none;
    background-color:  #eaf6fa;
}
button{
    width: 5%;
    height: 50px;
    border-radius: 10px;
    border: none;
    padding:0px 30px;
    background-color: white;
    color:#142E36;
    font-weight: bold;
    text-align: center;
    
}
button:hover{
    cursor: pointer;
    background-color: #eaf6fa;
}


.weather-div{
    width: 90%;
    display:none;
}

.date{
    color:white;
    margin-bottom: 20px;
}

.weather-div-content{
    
    background-color: #FFF9F9;
    padding-bottom: 10px;
    border-radius: 20px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 20px;
    

}

.weather-div-content div{
    width:70%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

#current-temp, .city-name{
    font-size: 20px ;
    font-weight: bold;
}

.advice{

    width: 90%;
    background-color: #FFF9F9;
    padding: 20px 20px;
    border-radius: 20px;
    min-height: 300px;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 50px;
    display: none;

}

.advice p {
    margin-bottom: 15px;
    text-align: center;
    font-weight: 500;
}

footer{
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    background-color:hsl(194, 49%, 32%, 0.11);
    padding: 10px 0px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    position: fixed;
    bottom: 0px;
}

a{
    text-decoration: none;
    color: white;
}

a[href="https://www.weatherapi.com/"], a[href="https://github.com/Jennifer1919"]{
    color:gray;
    width: 100%;
    align-self: left;
}

.about-us-div{
    width: 90%;
    background-color: #FFF9F9;
    padding: 20px 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin-top: 50px;
    color:#142E36;
    
}


@media only screen and (min-width:750px){

    body{
        display: grid;
        grid-template-columns: 40% 55%;
        column-gap: 5%;
        justify-items: center;
        align-items:center;
    }
    
    
    header, .input-div, footer, .about-us-div{
        grid-column: 1/3;
    }
    
    .about-us-div{
        height: 400px;
    }
    
    header{
        padding: 10px 50px;
        justify-content: space-between ;
    }

    .advice{
        margin: 20px 0px 0px 0px;
    }

    a[href="#header"]{
        display: none;
    }
}



