@import 'href="https://fonts.googleapis.com/css2?family=Crimson+Text&family=Dosis&family=Lexend+Peta&family=Open+Sans:wght@300;700&family=Playfair+Display&family=Source+Serif+Pro:wght@300&display=swap';

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Crimson Text', serif;
    background-image: url('images/weather.jpg');
    background-size: cover;
    background-position: top center;
}
.container{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
}
header{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 15px 15px;
}
header input{
    width: 100%;
    max-width: 380px;
    padding: 10px 15px;
    border: none;
    outline: none;
    background-color: rgba(207, 240, 239, 0.3);
    border-radius: 10px 10px 10px 10px;
    border-bottom:  5px solid #a5a3aa;
    color: #ece6e6;
    font-size: 20px;
    font-weight: 300;
    transition: 0.4s ease-in-out; 
}
header ::placeholder{
    color: rgb(243, 236, 236);
    font-size: 16px;
}
header input:focus{
    background-color: rgba(22, 19, 19, 0.6);
}
main{
    flex: 1 1 100%;
    padding: 25px 25px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.location .city{
    color: #FFF;
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 5px;
}
.location .city:hover{
    color: rgb(127, 211, 88);
}
.location .date{
    color: #FFF;
    font-size: 15px;
}
.current .temp {
    color: #FFF;
    font-size: 120px;
    font-weight: 650;
    margin: 40px 20px 30px 20px;
    text-shadow: 4px 8px rgba(0, 0, 0, 0.6);
}
.current .temp span {
    font-weight: 500;
}
.current .weather {
    color: #FFF;
    font-size: 35px;
    font-weight: 100;
    margin-bottom: 15px;
    text-shadow: 0px 3px rgba(0, 0, 0, 0.4);
}
.current .hi-low {
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    text-shadow: 2px 5px rgba(0, 0, 0, 0.4);
}