* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #181818;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: url('../images/background.jpg') no-repeat center center;
  background-size: cover;
}

.container {
  background: rgba(0, 0, 0, 0.7);
  padding: 2rem;
  max-width: 700px;
  text-align: center;
  border-radius: 15px;
}

h1 {
  font-size: 2.5rem;
}

.highlight {
  color: #f9c947;
}

p {
  font-size: 1.2rem;
  margin-top: 1rem;
}

.button-group {
  margin-top: 2rem;
}

button {
  background-color: #f9c947;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  color: black;
  cursor: pointer;
  margin: 5px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #ffd369;
}
