body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 20px;
  background: linear-gradient(120deg, #2980b9, #6dd5fa, #ffffff);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 95vh;
  color: #333; /* Couleur du texte */
}

.header {
  background-color: #2980b9;
  color: white;
  border-radius: 10px;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 70px;
  padding-right: 70px;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 10px;
  padding-bottom: 10px;
}

.navigation ul {
  list-style: none;
  display: flex;
}

.navigation ul li {
  margin-right: 30px;
  position: relative;
}

.navigation ul li a {
  text-decoration: none;
  color: white;
  position: relative;
}

.navigation ul li a::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease-in-out;
}

.navigation ul li a:hover::before {
  width: 100%;
  transition: width 0.3s ease-in-out;
}


.container {
  width: 80%;
  margin: 0 auto;
}

.logo {
  margin: 0;
  font-size: 32px;
}

.main-content {
  padding: 20px 0;
}

.article-section {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.weather-article h2 {
  color: #3498db;
  border-bottom: 2px solid #3498db;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.weather-article p {
  line-height: 1.6;
  color: #333;
}


.footer {
  background-color: #2980b9;
  color: white;
  text-align: center;
  padding: 20px 0;
  flex-shrink: 0;
  width: 20%;
  border-radius: 15px;
  bottom: 1vw;
}
