
/* CSS Document */
body {
  font-family: Arial, sans-serif;
  background-color: #513216;
  color: #efbd11;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.thank-you-container {
  text-align: center;
  background-color: #efbd11;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
  box-sizing: border-box;
}

.thank-you-container h1 {
  margin: 0;
  font-size: 2.5em;
  color: #513216;
}

.thank-you-container p {
  font-size: 1.2em;
  color: #333333;
  text-align: center;
}

.thank-you-container a {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #513216;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
}

.thank-you-container a:hover {
  background-color: #5a2e1a;
}

.logo {
  width: 100%;
  max-width: 500px;
  margin-bottom: 20px;
}
