body {
  background-color: #ffffff;
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  color: #333;
  padding: 20px;
}

.logo {
  max-width: 250px;
  width: 100%;
  height: auto;
  animation: glow 2s ease-in-out infinite alternate;
}

h1 {
  font-size: 2em;
  margin-top: 50px;
}

p {
  font-size: 1.2em;
  color: #555;
}

@keyframes glow {
  from {
    filter: drop-shadow(0 0 5px #999);
  }
  to {
    filter: drop-shadow(0 0 15px #999);
  }
}
