@font-face {
  font-family: "Chalkduster";
  src: url(../fonts/Chalkduster.ttf) format('truetype');
}

body {
  margin: 0;
  padding: 0;
  background: url(../img/mainbg.jpg) no-repeat center center fixed;
  background-size: cover;
  font-family: "Chalkduster", cursive, sans-serif;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  max-width: 100%;
  z-index: 10;
}

.enter-button {
  font-size: 48px;
  font-family: "Chalkduster", cursive;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  animation: glow 1.5s ease-in-out infinite alternate;
  text-shadow: 0 0 10px white, 0 0 20px #ff3c00;
  margin-top: 40px;
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px white, 0 0 20px #ff00bf;
  }
  to {
    text-shadow: 0 0 20px white, 0 0 30px #ff00bf, 0 0 40px #ff00bf;
  }
}
