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

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

.background-container {
  background-image: url("./bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;
}

.center-box {
  background-color: rgba(255, 255, 255, 0.92);
  padding: 3rem 4rem;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 650px;
}

.center-box h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.center-box h2 {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #4a4a4a;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: "Helvetica Neue", Arial, sans-serif;
}
