*{
    padding: 0;
    margin: 0;
    font-family: "Ubuntu", sans-serif;
}
body{
    
    background-image: url('../img/chuttersnap-QkPb5g9p338-unsplash.jpg');
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;  
}
.hide{
    display: none;
}
.logo-container{
    display:flex;
    border: solid 2px;
    border-radius: 5px;
    background-color: rgb(124, 97, 37);
}
#logo{
    height: 15vh;
}
#logo-description-1{
   display: flex;
   justify-content: center;
   align-items: center;
   padding: 1rem 0 1rem 1rem;
   font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
   font-size: 25px;
}
#logo-description-2{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 1rem 1rem 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 25px;
 }
.container{
    background-color: rgb(204, 218, 131,0.8); 
    box-shadow: black 0px 3px 8px;
    padding: 2rem;
    border-radius: 5px;
}
/* FORM */
.form{
    margin-bottom: 2rem;
    margin-top: 2rem;

}
.form-input-container{
    display: flex;
}
#city-input{
    padding: 0.8rem;
    border: none;
    flex: 1;
    border-radius: 4px;
}
.form h3{
    margin-bottom: 0.8rem;
}
#search{
    padding: 0.8rem;
    min-width: 50px;
    margin-left: 8px;
    background-color: rgb(15, 15, 12);
    color: white;
    cursor: pointer;
    border-radius: 4px;
    border: none;
}
/* CLIMA */
#weather-data, #error-message{
    border-top: 2px solid black;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    text-align: center;
}
#weather-data h2{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.6rem;
}
#icon-location{
    font-size: 1rem;
}
#city{
    margin: 0.6rem;
    font-size: 1.2rem;
}
#country{
    height: 15px;
}
#discription-container{
    display: flex;
    justify-content: center;
    align-items: center;
    
}
#description{
    font-weight: bold;
    text-transform: capitalize;
}
#details-container{
    display: flex;
    justify-content: center;
    align-items: center;

}
#details-container #humidity{
border-right: 1px solid black;
padding: 0.6rem;
margin: 0.6rem;
}
#timezone{
    display: flex;
    justify-content: center;
    flex-direction: column;
}
#timezone #time-details{
    padding: rem;
    margin: 0.6rem;
}
#population-container{
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: rem;
    margin: 0.6rem;
}
#info-country{
    display: flex;
    justify-content: center;
    flex-direction: column;   
}
#info-country #language{
    margin: 0.6rem;
}
#info-country #coin{
    margin: 0.6rem;
}
#info-country #code-calling{
    margin: 0.6rem;
}

@media screen and (max-width: 480px) {
    .container{
        width: 60vw;
        background-color: rgb(204, 218, 131, 0.7); 
        box-shadow: black 0px 3px 8px;
        border-radius: 5px;
        
}
#city-input{
    padding: 0.8rem;
    border: none;
    border-radius: 4px;
    width: 60px;
}
.logo-container{
    display: flex;
    width: 60vw;
    height: 10vh;
    border: solid 2px;
    border-radius: 5px;
    background-color: rgb(124, 97, 37);
}#logo{
    height: 10vh;
    width: 60vw;
    align-items: center;
    text-align: center;
    justify-content: center;
   
}
#logo-description-1{
   font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
   font-size: 20px;
   padding: 1rem;
}
#logo-description-2{
    text-align: center;
    justify-content: center;
    display: inline-block;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px;
}
}