body {
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem !important; 
}

#weather-container {
  background: url('https://espacesud.fr/wp-content/uploads/2022/10/ciel.jpg') no-repeat center;
  background-size: cover;
  display: inline-block;
  padding: 20px;
  border-radius: 10px;
  color: white;
  position: relative;
}

#weather-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

#weather-title {
    color: white !important;
  }

#weather-title,
#weather-description,
#weather-temperature {
  position: relative;
  z-index: 1;
  color: white;
}

#weather-temperature {
  font-size: 5rem;
  font-weight: bold;
}

#logo {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 60px;
    height: auto;
    z-index: 1;
  }
  
