html, body {
  position: relative;
  width: 100%;
  height: 100%;
}

body {
  font-size: 16px;
  line-height: 1;
  font-family: sans-serif;
  color: magenta;
  font-weight: bold;
}

* {
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a {
  cursor: pointer;
}

body {
  background-color: #40354E;
}

.view {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  height: 100%;
  font-family: "Helvetica Neue", sans-serif;
  text-align: center;
  padding-left: 16px;
  padding-right: 16px;
  align-self: center;
  margin: 0 auto;
}
@media (min-width: 375px) {
  .view {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media (min-width: 768px) {
  .view {
    max-width: 500px;
    padding-top: 96px;
    padding-bottom: 96px;
  }
}

.container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
}

.thankYou {
  width: 100%;
  height: auto;
  margin-bottom: 48px;
}

.tagline {
  font-size: 16px;
  color: white;
  font-weight: 500;
  line-height: 1.4;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}

.button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #FF596F;
  border-radius: 48px;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  height: 48px;
  padding-left: 24px;
  padding-right: 24px;
  color: white;
  text-decoration: none;
  transition: opacity 300ms ease-in-out;
}
.button:active, .button:hover {
  color: white;
}
.button:active {
  transition-duration: 0ms;
  opacity: 0.6;
}

.description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  line-height: 1.4;
  width: 100%;
  margin-top: 24px;
}