* {
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  overflow: hidden;
  background: radial-gradient(circle at center, #111, #000);
  height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  color: white;
  position: relative;
}

/* ÉTOILES */
.star {
  position: absolute;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 10px white;
  animation: moveStars linear infinite;
}

@keyframes moveStars {
  0% {
    transform: translateY(0vh);
  }
  100% {
    transform: translateY(-120vh);
  }
}

/* CONTAINER */
.container {
  position: relative;
  z-index: 2;

  width: 650px;
  min-height: 500px;
  padding: 50px;

  border-radius: 25px;

  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;

  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 25px rgba(255,255,255,0.15);
}

.profile-img {
  width: 220px;
  height: 220px;

  border-radius: 50%;
  object-fit: cover;

  border: 4px solid white;

  margin-bottom: 25px;

  box-shadow: 0 0 20px rgba(255,255,255,0.4);
}

h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

p {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 35px;
}

/* SOCIALS */
.socials {
  display: flex;
  justify-content: center;
  gap: 35px;
}

.socials img {
  width: 80px;
  transition: 0.3s ease;
}

.socials img:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 0 15px white);
}

/* FONDATEURS */
.founders {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 35px;
}

.person {
  width: 45%;
  text-align: center;
}

.person img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2px solid white;
  margin-bottom: 10px;
}

.person h3 {
  margin: 5px 0 2px 0;
  font-size: 16px;
}

.person span {
  color: #aaa;
  font-size: 13px;
}

.person a {
  display: inline-block;
  margin-top: 8px;
  color: #1da1f2;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.person a:hover {
  color: white;
  text-shadow: 0 0 10px white;
}

/* alignement */
.person.left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.person.right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}