body {
  background-color: #F1F6FA;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.thank-you-container {
  background-color: #f1f1f1;
  padding: 40px;
  border-radius: 8px;
  border: 2px solid #3399FF;
  text-align: center;
}

h1 {
  color: #3399FF;
  font-size: 36px;
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  line-height: 1.6;
}

a {
  color: #3399FF;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.thank-you-container .btn {
  background-color: #3399FF;
}

.btn {
  color: white;
  padding: 13px 20px;
  border-radius: 10px;
  transition: 0.3s ease;
  border: none;
  cursor: pointer;
}

.thank-you-container .btn:hover {
  color: white;
  transform: translateY(5px);
}