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

body {
  background-color: #111;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: sans-serif;
  opacity: 0;
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

img {
  width: 100%;
  max-width: 550px;
  margin-bottom: 1.5rem;
  transition: transform 0.3s, filter 0.3s;
}

img:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 90%;
}

a {
  background-color: #3ecf8e;
  color: #111;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.2s;
}

a:hover {
  background-color: #04fc8d;
  transform: scale(1.05);
}

@media (max-width: 600px) {
  img {
    max-width: 400px;
  }

  h1 {
    font-size: 1.5rem;
  }

  p {
    font-size: 0.9rem;
  }
}
