:root {
  --brand-colour: #eb5a37;
  --content-width: 60ch;

  @media screen and (min-width: 992px) {
    --content-width: 80ch;
  }
}

body {
  margin: 0;
  height: 100vh;
  display: flex;

  * {
    font-family: "Open Sans", sans-serif;
  }

  a {
    font-weight: 700;
    text-decoration: none;
    color: var(--brand-colour);
  }

  div.content {
    max-width: var(--content-width);
    margin: auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;

    img.journal-logo {
      max-width: 40ch;
      margin: 0 auto;
    }

    div.copy {
      margin: 3rem 0;

      p {
        text-align: center;

        &:first-of-type {
          margin-top: 0;
        }

        &:last-of-type {
          margin-bottom: 0;
        }
      }
    }

    div.logos {
      display: flex;
      width: 100%;
      gap: 0.5rem 2rem;
      justify-content: center;
      flex-wrap: wrap;

      img {
        max-height: 140px;
        border-radius: 10px;

        &:hover,
        &:active {
          box-shadow: 0px 0px 8px 0px #d5d5d5;
        }
      }
    }
  }
}