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

body{
    background: radial-gradient(#ef9898, #f21a1a);
}

.glass-card {
    width: 90%;
    max-width: 470px;
        
    color: #fff;
    margin: 100px auto 0;
    border-radius: 20px;
    padding: 40px 35px;
    text-align: center;
    
}

.glass-card {

  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 0px 0px rgba(255, 255, 255, 0);
  position: relative;
  overflow: hidden;
}



.search{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search input{
    border: 0;
    outline: 0;
    background: #ebfffc;
    color: #555;
    padding: 10px 25px;
    height: 60px;
    border-radius: 30px;
    flex: 1;
    margin-right: 16px;
    font-size: 18px;
}

.search button{
    border: 0;
    outline: 0;
    background: none;
    border: #ebfffc solid 3px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
}
@media (max-width: 480px) {
  .search {
    flex-direction: column;
    align-items: center;

  }

  .search input {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }

  .search button {
    width: 50px;
    height: 50px;
  }
}

.search button img{
    width: 16px;
    height: auto;
    
}

.weather-icon{
    width: 170px;
    margin-top: 30px;;
}

.weatherIconHerbignac{
    width: 100px;
    height: auto;
}

.details{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    margin-top: 50px;
    flex-direction: column;
}

.col{
    display: flex;
    align-items: center;
    text-align: left;
    margin-top: 20px;
}

.col img{
    width: 40px;
    margin-right: 10px;
    height :auto;
}

.humidity, .wind{
    margin-top: -6px;
}

.weather{
    display: none;
}

.error{
    text-align :left;
    margin-left: 10px;
    font-size: 14px;
    margin-top: 10px;
    display: none;
}

.temp{
    font-size: 80px;
    font-weight: 500;
}
.city{
    font-size: 45px;
    font-weight: 400;
    margin-top: -10px;
}

.windDirectionHerbignac, .windDirection {
    text-align: center;
    width: 100%;
}