* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: url("images/background.png");
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.vortex {
  position: absolute;
  width: 200%;
  height: 200%;
  background: repeating-conic-gradient(from 0deg,
      #ff3ec7 0deg,
      #fffcfe 40deg);
  animation: spin 15s linear infinite;
  filter: blur(20px) brightness(1);
  z-index: 0;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.content {
  z-index: 2;
  text-align: center;
}

.logo {
  width: 360px;
  height: auto;
  opacity: 0;
  transform: scale(0);
  animation: popIn 1.2s ease-out forwards;
}

@keyframes popIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.socials {
  display: flex;
  gap: 35px;
  /* margin-top: 10px; */
  justify-content: center;
}

.socials a {
  opacity: 0;
  transform: translateY(20px);
  display: inline-block;
}

.socials img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(0.9);
}

.socials img:hover {
  transform: scale(1.2);
  filter: brightness(1.2);
}

@media (max-width: 600px) {
  .logo {
    width: 120px;
  }

  .socials img {
    width: 32px;
    height: 32px;
  }
}