body {
  background-color: #e6f7f5;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

h1 {
  margin-top: -10rem;
  font-size: 2.5rem;
  color: #1a1a1a;
}

p {
  font-size: 1.2rem;
  color: #333;
  max-width: 80%;
}

/* Groupe contenant tout sauf le <p> */
.group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
  z-index: 1;
}

.geekcb-body {
  --geekcb-size: 200px;
  background-color: #ddfbf0;
}

.geekcb-wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 75vh;
  justify-content: center;
  width: 100vw;
  margin-top: -200px;
}

.geekcb-circle {
  align-items: center;
  border-radius: 50%;
  display: flex;
  justify-content: center;
}

.geekcb-evil-eye {
  animation: geekcb-size 10s ease-in-out infinite;
  background-color: #3549a0;
  cursor: pointer;
  height: var(--geekcb-size);
  opacity: 1;
  transition: opacity 250ms linear;
  width: var(--geekcb-size);
}

.geekcb-evil-eye:hover {
  animation-play-state: paused;
}

.geekcb-circle-top,
.geekcb-circle-middle,
.geekcb-circle-bottom {
  height: 50%;
  width: 50%;
}

.geekcb-circle-top {
  background-color: #fff;
}

.geekcb-circle-middle {
  background-color: #15bdee;
}

.geekcb-circle-bottom {
  animation: geekcb-blink 5s ease-in-out infinite;
  background-color: #1a0c26;
}

@keyframes geekcb-blink {
  50% {
    height: 50%;
  }

  60% {
    height: 5%;
  }

  70% {
    height: 50%;
  }
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
    margin-top: -6rem;
  }

  p {
    font-size: 1rem;
    max-width: 90%;
  }

  .geekcb-body {
    --geekcb-size: 150px;
  }

  .geekcb-wrapper {
    height: auto;
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
    margin-top: 2rem;
    z-index: 1000;
  }

  p {
    font-size: 0.95rem;
  }

  .geekcb-body {
    --geekcb-size: 120px;
  }
}
