*{
  margin: 0;
  padding: 0;
}
a {
  color: white;
  opacity: 0.6;
  text-decoration: none;
}

a:hover, a:active, a:focus{
  color: white;
  text-decoration: none;
  opacity: 1;
}

.active {
  color: white;
  text-decoration: none;
  opacity: 1;
}

body{
  background-color: #F4F6F7;
}

#wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  box-shadow: 1px 5px 25px 3px #444;
  border-radius: 0px;
  width: 100vw;
  padding: 5px;
  color: white;  
  height: 100vh;
  overflow: hidden;
  /*
  background-color: #28688C;
  background: url('https://i.postimg.cc/2y8wPwX3/7cd57f8b757aea1e128f2f8f6b2c1983.gif') no-repeat;
  background-position: center;
  background-repeat: no-repeat;*/
  background-size: cover;
}

#current-weather{
  padding: 15px;
  margin: 50px;
  border-radius: 10px;    border: 2px solid rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.4);
  max-width: 1000px;
  min-width: 500px;
  border-radius: 10px;
  z-index: 2;
  overflow: hidden;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
#mainTemperature{
  font-size: 5.5em; 
  line-height: 0.7;
}

#tempDescription {
  margin-top: 10px;
  text-align: center;
}

.day-weather-box{
  width: 110px;
  background-color: #2E7FA1;
  border-radius: 0px;
  /*height: 5em;*/
  margin-left: 5px;
  margin-right: 5px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  z-index: 2;
   
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  position: relative;
  
}

.day-weather-box p{
  margin-bottom: 0;
}

.side-weather-info {
  padding: 0px 10px;
}

.day-weather-inner-box {
  
  /*display: flex;*/
  margin: 14px;
  padding: 0px 5px;
}

.forecast-main {
  display: flex;
  justify-content: center;
}

.forecast-icon {
  font-size: 35px;
  text-align: center;
}

.container-fluid {
  background: transparent;
  margin: 30px;
  padding: 20px;
  max-width: 1100px;
  min-width: 600px;
}

.forecast-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.4);
  padding: "2px";
  padding: 15px;
  border-radius: 10px;    border: 2px solid rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.4);
  max-width: 1000px;
  min-width: 500px;
  border-radius: 10px;
  z-index: 2;
  overflow: hidden;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.forecast-min-low {
  margin-left: 5px;
  display: flex;
  flex-direction: column-reverse;
}
.forecast-min-low > p > img {
  height: 3%;
  width: 3%;
  margin-left: 2px;
}
.forecast-temperature {
  display: flex;
}


html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* Style pour que l'iframe occupe tout l'écran */
#background-iframe {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: -1; /* Derrière le contenu principal */
}

/* Contenu principal au-dessus du fond */
.content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  padding-top: 50px;
}