/* Welcome Page */
.welcome-body {
  background: url('../images/background.jpg') no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.welcome-container {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 50px;
  border-radius: 10px;
}

.welcome-container h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.welcome-container p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.enter-button {
  background-color: #f04e30;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.enter-button:hover {
  background-color: #c03e24;
}
body { font-family: Arial; background: #111; color: #fff; text-align: center; }