
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: radial-gradient(circle at center, #000000, #1a1a1a);
  color: white;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}

.container {
  text-align: center;
}

.logo {
  width: 200px;
  margin-bottom: 30px;
  animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

.contact-button, .ig-button {
  display: block;
  margin: 10px auto;
  padding: 12px 24px;
  background-color: #ffffff20;
  color: white;
  text-decoration: none;
  border: 1px solid white;
  border-radius: 12px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.contact-button:hover, .ig-button:hover {
  background-color: #ffffff40;
}
