body {
  margin: 0;
  height: 100vh;
  background-color: #343434;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Poppins', sans-serif;
}

.logo-container {
  text-align: center;
  color: white;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 300px;
  height: 300px;
  object-fit: contain;
  transition: transform 0.6s ease;
  will-change: transform;
}

.logo:hover {
  transform: perspective(600px) rotateX(15deg) rotateY(15deg) scale(1.05);
}

.tagline {
  margin-top: 45px;
  font-size: 1.05rem;
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s ease forwards 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
