:root {
  --primary: #AC6694;
  --secondary: #C092BD;
  --dark: #563635;
  --light: #FFFAEF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  font-family: 'Shantell Sans', cursive;
  background-color: var(--light);
  color: var(--dark);
}

.container {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.name-image {
  max-height: 20vh;
  width: auto;
  height: auto;
  object-fit: contain;
  animation: fadeIn 0.5s ease;
}

.fish {
  max-height: 3vh;
}

.social-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.social-link {
  font-family: 'Shantell Sans';
  font-size: 1.5rem;
  color: var(--primary);
  display: block;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--secondary);
  transform: translateY(-2px);
  /* filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2)); */
}

.social-link:active {
  transform: translateY(-2px);
}

.social-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .name-image {
    max-height: 20vh;
  }

  .social-icon {
    width: 50px;
    height: 50px;
  }

  .social-links {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .name-image {
    max-height: 20vh;
  }

  .social-icon {
    width: 45px;
    height: 45px;
  }

  .social-links {
    gap: 1rem;
  }
}
