@import url('reset.css');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: 'Benzin';
    src: url('/wp-content/themes/understrap-child-1.2.0/fonts/Benzin-Bold.ttf') format('truetype');
    font-weight: 700;
}

html, body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 16px;
  margin: 0;
}
body {
  min-height: 100vh;
}
#page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Benzin', serif;
  font-weight: 700;
}
h2 {
  font-size: 2.5rem;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}

.thanks {
  flex: 1;
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}
.thanks-card {
  border-radius: 20px;
  padding: 0 20px;
  max-width: 640px;
  width: 100%;
}
.thanks-title {
  font-size: 48px;
}
.thanks-description {
  font-size: 20px;
  margin: 20px 0 40px;
}
.thanks-button {
  display: inline-block;
  border-radius: 30px;
  padding: 20px 40px;
  text-decoration: none;
}
.thanks-footer {
  background-color: #101010;
  font-size: 15px;
  color: #fff;
  text-align: center;
  padding: 35px 0 45px;
  .thanks-footer-link {
    color: #ff8562;
    text-decoration: none;
    &:hover {
      color: #ff8562;
      text-decoration: underline;
    }
  }
  .thanks-footer-note {
    margin-top: 8px;
    color: #404040;
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  .thanks-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 575px) {
  .thanks-title {
    font-size: 32px;
  }
}