*{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;

}

body{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(./../assets/night_city.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    
    
    
}

p, h2, i, span{
    color: rgb(245, 245, 245);
}

h2{
    text-align: center;
}

.hide{
    display: none!important;
}

.container{
    background-color: rgb(27, 10, 43, 0.9);
  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 2rem;
    padding: 3rem;
    margin: 0 20px;
    

}

.form{
   
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:1rem;
}

.form input{
   
    padding: 1rem;
    border:none;
    flex: 1;
    border-radius: 4px;
    
    
}

.form button{
    cursor: pointer;
    border-radius: 4px;
    background-color: rgb(91, 156, 212);
    border: none;
    padding: 1rem;
    color: azure;

    
}

#weather-informations-container{
    padding-top: 1.5rem;
    border-top: 1px solid #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.rain-wind-container{
    display: flex;
    gap: 1rem;
    border-top: 1px solid #fff;
    padding: 1rem;
}

.humidity{
    border-right: 1px solid #fff;
    padding-right: 1rem;
    
}

.sky{
    display: flex;
    text-align: center;

    justify-content: center;
    align-items: center;
}


#country{
    text-transform: lowercase;

}


/* Loader */
#loader i {
    animation: rotate 1.5s linear infinite;
  }
  
  @keyframes rotate {
    to {
      transform: rotate(360deg);
    }
  }


#error-message,
#loader {
  border-top: 1px solid #fff;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  text-align: center;
}
