body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: white;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  text-align: center;
}

.bg img {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
  z-index: -1;
}

.logo {
  width: clamp(150px, 60vw, 250px);
  border-radius: 20px;
  transition: all 0.5s;
}

.logo:hover {
  box-shadow:
    0 0 10px rgb(255, 255, 255),
    0 0 25px rgba(255, 255, 255, 0.789),
    0 0 50px rgba(255, 255, 255, 0.81);
}

h1 {
  color: white;
  margin: 0;
  font-size: clamp(1.5rem, 6vw, 2.5rem);
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h2 {
  margin: 0;
  margin-bottom: 30px;
  font-size: clamp(1.8rem, 8vw, 3rem);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.link {
  display: inline-block;
  text-decoration: none;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 768px) {
  .container {
    min-height: 100vh;
    padding: 15px;
  }

  h1 {
    font-size: clamp(1.3rem, 5vw, 2rem);
    margin-bottom: 8px;
  }

  h2 {
    font-size: clamp(1.5rem, 7vw, 2.5rem);
    margin-bottom: 25px;
  }

  .logo {
    width: clamp(120px, 50vw, 200px);
  }
}
