
body {
  margin: 0;
  font-family: 'Cinzel', serif;
  background-image: url('img/background.jpg');
  background-size: cover;
  background-position: center;
  color: #f0e6d2;
  text-align: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h1 {
  font-size: 48px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px #000;
}

p {
  font-size: 24px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px #000;
}

button {
  font-size: 22px;
  padding: 15px 40px;
  background: #6b4226;
  color: white;
  border: 2px solid #d6c186;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

button:hover {
  transform: scale(1.05);
  background: #8b5e3c;
}
