body {
  margin: 0;
  font-family: 'Trebuchet MS', sans-serif;
}

.container {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  padding-top: 3rem;
}

.logo {
  display: flex;
  justify-content: center;
}

.headline {
  font-size: 24px;
  font-weight: 700;
  color: #224287;
  text-align: center;
  padding: 2rem 0;
}

.message-wrapper {
  position: relative;
}

.message-box {
  font-size: 48px;
  font-weight: 700;
  color: white;
  background: #224287;
  padding: 4rem 10rem 4rem 4rem;
  border-radius: 10px;
}

.eagle {
  position: absolute;
  transform: translate(50%, 50%) scaleX(-1);
  right: 0;
  bottom: 50%;
  width: 300px;
}

.footer {
  position: fixed;
  bottom: 0;
  margin-bottom: 1rem;
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #a1a1aa;
}

@media (max-width: 950px) {
  .message-box {
    display: flex;
    flex-direction: column-reverse;
    padding: 4rem 4rem 15rem 4rem;
    text-align: center;

    img {
      width: 27px;
      height: auto;
      align-self: center;
    }
  }

  .eagle {
    right: 50%;
    bottom: 0;
  }

  .headline,
  .message-wrapper {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

#cf-token {
  display: none;
}