* {
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
}

body {
  min-height: 200vh;
  margin: 0;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url("imgs/0057.jpg");

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  background-attachment: fixed;

  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  text-align: center;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: white;

  margin-top: 50px;
  margin-bottom: 60px;

  font-weight: 700;

  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

main {
  width: 90%;
  max-width: 650px;

  display: flex;
  flex-direction: column;
  gap: 60px;

  background: rgba(255, 255, 255, 0.85);

  padding: 50px 40px;

  border-radius: 25px;

  backdrop-filter: blur(10px);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

#text {
  text-align: center;
}

h2 {
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  line-height: 1.6;

  color: #3b3b3b;

  font-weight: 400;
}

#button {
  display: flex;
  justify-content: center;
}

button {
  width: 280px;
  height: 75px;

  font-size: 1.2rem;
  font-weight: 700;

  color: white;

  background: linear-gradient(135deg, #b8860b, #d4af37);

  border: none;
  border-radius: 40px;

  cursor: pointer;

  transition: 0.3s ease;

  box-shadow: 0 10px 25px rgba(184, 134, 11, 0.4);
}

button:hover {
  transform: translateY(-5px);

  box-shadow: 0 15px 35px rgba(184, 134, 11, 0.5);
}

button:active {
  transform: translateY(0);
}

@media (max-width: 600px) {
  main {
    padding: 35px 20px;
    gap: 40px;
  }

  button {
    width: 100%;
  }
}
