@charset "UTF-8";
@font-face {
  font-family: "Michroma";
  src: url("./../fonts/michroma/Michroma-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Syne";
  src: url("./../fonts/syne/static/Syne-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Syne";
  src: url("./../fonts/syne/static/Syne-ExtraBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Syne";
  src: url("./../fonts/syne/static/Syne-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Syne";
  src: url("./../fonts/syne/static/Syne-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Syne";
  src: url("./../fonts/syne/static/Syne-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
body {
  height: 100vh;
  background: #110F13;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0;
}
body h2, body p, body a {
  font-family: "Syne", sans-serif;
}
body h1 {
  font-family: "Michroma", sans-serif;
}
body:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
  opacity: 0.12;
}
body .main-container {
  position: relative;
  z-index: 10;
  min-width: 300px; /* Largeur minimale pour éviter que ce soit trop étroit */
  max-width: 500px; /* Largeur maximale souhaitée */
  width: 90%; /* Prend 90% de la largeur de l'écran sur mobile */
  padding: 80px 40px;
  background-color: #9f64e8;
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 1.5rem;
  border: 5px solid white;
  box-sizing: border-box;
}
body .main-container .profile-image {
  width: 200px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 100%;
  border: 5px solid white;
  margin-bottom: 30px;
}
body .main-container .title-subtitle {
  color: black;
  text-align: center;
}
body .main-container .title-subtitle .title {
  margin-top: 0;
  margin-bottom: 0;
}
body .main-container .title-subtitle .subtitle {
  margin-top: 0;
  margin-bottom: 40px;
}
body .main-container .links {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
}
body .main-container .links .link {
  width: 100%;
  padding: 15px 30px;
  background-color: white;
  color: black;
  margin-bottom: 20px;
  border-radius: 1000px;
  text-decoration: none;
  transition: 0.2s all ease-in-out;
}
body .main-container .links .link:hover {
  background-color: #e6e5ed;
}
body .main-container .links .link:last-child {
  margin-bottom: 0;
}

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