/* css/thanks.css */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
}

/* Body & Background */
body {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('../img/bg-pattern.jpg') center center / cover no-repeat fixed;
  font-family: 'Manrope', sans-serif;
  color: #212529;
  font-size: 15px;
}

/* Centered Card Wrapper */
.content {
  width: 100%;
  max-width: 500px;
  padding: 2rem;
}

/* Card Styling */
.wrapper-1 {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.wrapper-2 {
  padding: 2rem;
  text-align: center;
}

/* Heading */
.wrapper-2 h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #2D9CDB;
  margin-bottom: 1rem;
}

/* Paragraphs */
.wrapper-2 p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #6C757D;
  margin-bottom: 1.5rem;
}

/* Button */
.go-home {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #27AE60;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.go-home:hover {
  background-color: #219653;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 480px) {
  .wrapper-2 h1 {
    font-size: 2.5rem;
  }
  .wrapper-2 p {
    font-size: 1rem;
  }
  .go-home {
    width: 100%;
    padding: 0.75rem;
  }
}
