html, body {
  height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #121212;
  color: #e0e0e0;
  font-family: sans-serif;
}

.container {
  text-align: center;
}

h1 {
  margin: 0;
  font-size: 2rem;
  color: #e0e0e0;
}

.buttons {
  margin-top: 1.5rem;
}

.button {
  display: inline-block;
  margin: 0 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.vanilla {
  background-color: #BCA988;
}

.curseforge {
  background-color: #F16436;
}

.modrinth {
  background-color: #00AF5C;
}

