/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #10121c;
  color: #4b63b7;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  padding: 1rem;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.title {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeIn 2s ease-in-out infinite alternate;
}

.message {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #FFFFFF50;
}

.illustration img {
  width: 100%;
  max-width: 600px;
  border-radius: 60%;
  animation: float 3s ease-in-out infinite;
  background: #4b63b722;
  box-shadow: 0 2px 4px 0 rgba(255, 255, 255, 0.13), 0 3px 10px 0 rgba(255, 255, 255, 0.15);
}

/* Animação flutuante suave para a imagem */
@keyframes float {
  0% {
      transform: translateY(0px);
  }
  50% {
      transform: translateY(-20px);
  }
  100% {
      transform: translateY(0px);
  }
}

@keyframes fadeIn {
  from {
      opacity: 0.5;
  }
  to {
      opacity: 1;
  }
}

/* Responsividade para dispositivos menores */
@media (max-width: 768px) {
  .title {
      font-size: 2.5rem;
  }

  .message {
      font-size: 1.2rem;
  }

  .illustration img {
      max-width: 400px;
  }
}

@media (max-width: 480px) {
  .title {
      font-size: 2rem;
  }

  .message {
      font-size: 1rem;
  }

  .illustration img {
      max-width: 300px;
  }
}