/* @haesler-oscar-emf */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

body {
  font-family: "Roboto", sans-serif;
  background-image: url(/img/samsommer-vddccTqwal8-unsplash.jpg);
  background-size: cover;
  background-position: 50%;
  color: #f0efef;
  margin: 0;
  padding: 0;
}

/* styles pour le container, avec un effet de glass */
.glassmorphism-container {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background-color: rgba(0, 0, 0, 0.519);
  border-radius: 10px;
  margin: 20px auto;
  padding: 20px;
  width: 100%;
  max-width: 70vw;
  height: 80vh;
  position: relative;
  overflow: scroll;

}
/* styles pour le contenu des boites*/
.content h1 {
  color: #ffffff;
  text-align: center;
}
.content p {
  margin-bottom: 50px;
}
/* styles pour le bouton d'accueil*/
.Accueil {
  background-color: #451ce7;
  border: none;
  border-radius: 10px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5px;
  font-size: 1.4vw;
  margin: 4px auto;
  display: block;
  width: fit-content;
  transition: 0.4s ease;
  cursor: pointer;
}

.Accueil:hover {
  background-color: #451ce797;
}
