body {
  background: url("./assets/cover.jpg") center;
  background-size: cover;
  font-family: 'Space Grotesk', sans-serif;
  margin: 0;
}

main {
  align-items: center;
  backdrop-filter: blur(20px) brightness(20%);
  box-sizing: border-box;
  flex-direction: column;
  display: flex;
  min-height: 100vh;
  min-width: 100vw;
}

.cover {
  align-items: center;
  background-color: rgb(255, 249, 201);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
  padding: 48px;
  width: 100%;
}

.cover-logo {
  max-width: 128px;
}

.cover-text {
  color: rgb(134, 43, 13);
  font-size: 1.25rem;
  text-align: center;
}

.cover-text--marked {
  background-color: rgb(134, 43, 13);
  color: rgb(255, 249, 201);
  margin-top: 2px;
  padding: 4px;
}

.links-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  max-width: 300px;
  padding: 0;
  width: 100%;
}

.links-list-item {
  background-color: rgb(181, 201, 154);
  border-radius: 12px;
  max-width: 100%;
  text-align: center;
}

.links-list-item-link {
  color: rgb(0, 0, 0);
  display: block;
  height: 100%;
  padding: 16px 8px;
  text-decoration: none;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .cover {
    flex-direction: row;
    gap: 48px;
  }

  .cover-text {
    max-width: 150px;
  }
}

@media screen and (min-width: 1440px) {
  .cover {
    padding: 96px;
  }

  .cover-logo {
    max-width: 175px;
  }

  .cover-text {
    max-width: 235px;
    font-size: 2rem;
  }
}