@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,800&display=swap");
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background-color: #023E8A;
  overflow-x: hidden;
}

header {
  background-color: #FFFFFF;
  padding: 1rem 0;
  text-align: center;
}

.burger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 15rem;
}

nav a {
  color: black;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.7em;
}

nav ul li a {
  color: black;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
}

nav ul li a:hover {
  text-decoration: underline;
}

main {
  padding: 2rem;
  text-align: center;
}

.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-top: 5rem;
}

.bulle {
  display: flex;
  flex-direction: column;
  text-align: justify;
  gap: 1.5rem;
  width: 900px;
  opacity: 90%;
  border-radius: 42px;
  padding: 2rem;
  background-color: rgba(202, 240, 248, 0.9);
  box-shadow: 0 0 10px #4D94C0, 0 0 20px #4D94C0, 0 0 30px #4D94C0;
  transition: box-shadow 0.3s ease-in-out;
}

.bulle h2 {
  font-size: 30px;
}

.bulle p {
  font-size: 20px;
}

.superposed {
  display: grid;
  place-items: center;
  position: relative;
  background: radial-gradient(circle, rgba(202, 240, 248, 0.9) 0%, rgba(255, 255, 255, 0) 60%);
  padding: 2rem;
}

.title {
  display: flex;
  flex-direction: column;
}

.superposed > * {
  grid-area: 1/1; /* Place tous les éléments au même endroit */
}

.title h2 {
  font-size: 40px;
  color: white;
}

.photo {
  border-radius: 42px;
  width: 50%;
}

section {
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: inline-block;
}

@media screen and (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  nav ul {
    display: none;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }
  .burger {
    display: block;
  }
  nav ul.show {
    display: flex;
  }
  nav {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  nav ul li a {
    font-size: 1.3em;
  }
  .logos {
    flex-direction: column;
    gap: 2rem;
  }
  .bulle {
    width: 90%;
    padding: 1rem;
  }
  .photo {
    width: 80%;
  }
  .superposed {
    padding: 1rem;
  }
  .superposed > * {
    width: 70%;
  }
  .title h2 {
    font-size: 28px;
  }
  .bulle h2 {
    font-size: 24px;
  }
  .bulle p {
    font-size: 16px;
  }
}

/*# sourceMappingURL=index.css.map */
