.screenreader-only {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}

body {
  margin: 0;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: 'wdth' 100;
}

a {
  color: inherit;
}

.main-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100dvh;
}

.main-wrapper main {
  margin-left: 24px;
  margin-right: 24px;
  display: flex;

  .logo {
    width: 150px;
    height: 150px;
  }

  .info-wrapper {
    padding: 0 24px;
    box-sizing: border-box;
    max-width: 640px;

    .info-title {
      margin-top: 0;
      margin-bottom: 12px;
    }

    .info-text {
      font-weight: 500;
      opacity: 0.7;
    }
  }
}

@media (max-width: 640px) {
  main {
    flex-direction: column;

    .info-wrapper {
      padding: 24px 0;
    }
  }
}

@media (max-width: 500px) {
  body {
    align-items: flex-start;
  }

  main {
    .logo {
      margin-top: 24px;
    }

    .info-wrapper .info-title {
      font-size: 1.5em;
    }
  }
}

footer {
  padding: 24px;
  color: white;
  background-color: #212121;
  display: flex;
  justify-content: center;

  .col-wrapper {
    width: 1200px;
    max-width: 80%;
    display: flex;
    justify-content: space-between;
  }

  .col {
    .logo {
      width: 64px;
      height: 64px;
    }

    h2 {
      font-size: inherit;
    }

    h3 {
      margin-top: 0;
      margin-bottom: -12px;
      font-size: inherit;
      font-weight: 500;
      text-decoration: underline;
    }

    p {
      opacity: 0.8;
    }
  }
}

@media (max-width: 1000px) {
  footer .col-wrapper {
    max-width: 90%;
  }
}

@media (max-width: 900px) {
  footer .col-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 800px) {
  footer .col-wrapper {
    flex-direction: column;

    > :not(:last-child) {
      margin-bottom: 32px;
    }
  }
}
