
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: black; 
  color: whitesmoke;
  font-family: 'League Spartan', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  background-color: black;
  border: 2px solid light grey;
  border-radius: 12px;
  padding: 40px 60px;
  text-align: center;
  box-shadow: 0 0 20px rgba(218, 165, 32, 0.3);
  max-width: 600px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

p {
  font-size: 1.2rem;
  line-height: 1.6;
}

strong {
  color: whitesmoke;
}
