html {
  width: 100%;
  min-height: 100vh;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: black;
  color: white;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main {
  margin-top: calc(env(safe-area-inset-top));
  height: 100%;
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: auto;
}

h1 {
  font-size: 48px;
  text-align: center;
}

h2 {
  font-size: 36px;
  text-align: center;
  margin-block-end: 0;
}

p {
  margin: 12px 12px;
}

a {
  color: yellow;
  img {
    border: 2px solid yellow;
  }
}

a:visited {
  color: green;
  img {
    border: 2px solid green;
  }
}

.home-link {
  margin: 30px auto;
}

.folder-wrapper {
  max-width: 90vw;
  width: 100%;
  margin: 24px 0;
}
.folder {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(244px, 1fr));
  gap: 20px;
  max-width: 1280px;
  width: 100%;
}
.folder-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  .img-container {
    height: 240px;
    width: 240px;
    display: flex;
    a {
      margin: auto;
    }
    img {
      max-width: 240px;
      max-height: 240px;
    }
  }
  a {
    font-size: 12px;
    text-align: center;
  }
}

footer {
  text-align: center;
  color: gray;
  font-size: 12px;
  height: 30px;
  margin-top: auto;
  height: 20px;
}
