body {
  padding: 0;
  margin: 0;
  background: radial-gradient(#002147 20%, #001128);
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-content: center;
  color: white;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-style: normal;

  main {
    font-size: 2.85rem;
    text-align: center;
    font-weight: 500;
    line-height: 1;
    color: #fe1f54;

    .light {
      font-weight: 200;
      font-size: 3rem;
      margin: 4rem 0;
      display: none;
    }

    strong {
      font-size: 3.5rem;
      font-weight: 700;
      color: #faa751;
    }

    div:has(small) {
      margin-top: 3rem;
    }

    small {
      font-weight: 200;
      font-size: 1rem;
      color: white;
      display: block;
      padding: 1rem;
    }

    @media (min-width:600px) {
      small {
        font-size: 1.25rem;
      }

      .light {
        display: block;
      }
    }

    small:last-of-type {
      font-weight: 400;
    }

    a {
      color: white;
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
    }

    img {
      display: block;
      margin: 0 auto 1rem;
    }
  }
}
