* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  color: #fff;
}

body {
  min-height: 100vh;
  background-image: linear-gradient(to bottom right, #374a5a, #fdabdd, #374a5a);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body::-webkit-scrollbar {
  display: none;
}
body nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  padding: 10px 0px;
  text-align: center;
  background-image: radial-gradient(circle 490.7px at 3.1% 21.8%, rgb(82, 6, 135) 0%, rgb(22, 1, 34) 100.3%);
  font-size: 2rem;
  box-shadow: 0 5px 20px rgb(52, 1, 255);
  z-index: 100;
}
body section {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 20px 15px;
}
body section .file a {
  text-decoration: none;
  color: #fff;
  font-weight: 900;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
body section .file a p {
  text-align: center;
}

@media (max-width: 1000px) {
  body section {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 750px) {
  body section {
    grid-template-columns: repeat(2, 1fr);
  }
}/*# sourceMappingURL=style.css.map */