
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  height: 100%;
  font-family: 'Georgia', serif;
}

.container {
  background: url('background-cleaned.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  text-align: center;
}

.content h1 {
  font-size: 24px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.content h2 {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.content p {
  margin-bottom: 10px;
  font-size: 16px;
}

.content a {
  color: #111;
  text-decoration: none;
}
