@font-face {
  font-family: "Aspira";
  src: url("./assets/Aspira-Regular.otf");
  font-weight: 400;
}

html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  font-family: "Aspira", Arial, sans-serif;
  color: #888;
  padding: 0;
  margin: 0;
}
.container {
  width: 100vw;
  min-height: 100vh;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.site-links-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.site-links {
  margin: 0 auto 2rem;
  display: grid;
  width: 100%;
  justify-content: center;
  align-items: start;
  grid-template-columns: repeat(auto-fit, minmax(200px, 300px));
  grid-template-rows: max-content;
  gap: 2rem;
  padding: 0 2rem;
}

.site-link a {
  display: block;
  line-height: 0;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.logo-text {
  font-size: 1.3rem;
  margin: 2rem 0 1rem 0;
}
.logo-img {
  width: 200px;
}

@media screen and (min-width: 800px) {
  .container {
    padding: 4rem;
  }
  .site-links {
    align-items: center;
    grid-template-columns: repeat(2, minmax(200px, 300px));
    grid-template-rows: unset;
    gap: 4rem;
    margin-bottom: 2rem;
    padding: 0;
  }
  .logo-img {
    width: 280px;
  }
}
