html {
  min-height: 100vh;
  background: url("/assets/backgroundblurred.jpg") no-repeat center center;
  background-size: cover;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 24px;
}

body {
  margin: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  a {
    color: #fff;
  }
}

#content {
  padding-inline: 2rem;
}

img {
  display: block;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;

  img {
    max-height: 80dvh;
    max-width: 80dvw;

    &.name {
      max-width: 100%;
    }
  }

  a {
    color: inherit;
    text-decoration: none;
    display: block;
    border: 2px solid #ffffff;
    padding: 0.5rem 0.75rem;
    border-radius: 2rem;
  }
}

.preview {
  display: flex;
  justify-content: center;

  img {
    max-height: 80dvh;
    max-width: 80dvw;
  }
}

.info {
  display: flex;
  flex-direction: column;
  min-width: min(370px, 86dvw);
  justify-content: center;
}

.preview, .logo, .info {
  flex: 1;
  max-width: 540px;
  padding: 2rem 1rem;
}

#footer {
  padding-block-end: 1rem;
  display: flex;
  gap: 1rem;
}
