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

/* Welcome page background */
.welcome-page {
  background-color: #111122;

  /* Replace this with your own background image later */
  background-image: url("images/background.gif");

  /* Makes the image repeat like an old tiled website background */
  background-repeat: repeat;

  /* Faded effect using an overlay */
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Faded dark overlay over the whole page */
.welcome-page::before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  background: rgba(10, 10, 25, 0.65);
  z-index: 0;
}

.welcome-box {
  position: relative;
  z-index: 1;

  width: 600px;
  max-width: 90%;
  text-align: center;
  background: rgba(20, 20, 45, 0.88);
  border: 4px double #aab0ff;
  padding: 25px;
  box-shadow: 0 0 25px black;
}

h1 {
  color: #d8dbff;
  text-shadow: 2px 2px #5a5fb8;
  font-size: 32px;
}

.subtitle {
  color: #ffccff;
  font-style: italic;
}

.welcome-img {
  max-width: 350px;
  width: 90%;
  border: 3px solid white;
  margin: 15px 0;
}

.enter-button {
  display: inline-block;
  margin-top: 20px;
  background: linear-gradient(#bfc4ff, #626bd6);
  color: white;
  border: 3px outset #dfe1ff;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 1px;
}

.enter-button:hover {
  background: linear-gradient(#ffccff, #b45dca);
  border: 3px inset #ffffff;
}
.main-page {
  background: #151522;
}

.page {
  width: 850px;
  max-width: 90%;
  margin: 30px auto;
  background: #24243a;
  border: 3px solid #6f7cff;
  padding: 20px;
}

nav {
  text-align: center;
  margin: 20px 0;
}

nav a {
  color: white;
  background: #5d66d6;
  padding: 8px 12px;
  margin: 4px;
  text-decoration: none;
  border: 2px outset #aaaaff;
}

nav a:hover {
  background: #8990ff;
}