@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  background-color: #0f0f0f;
  font-family: "Outfit", Gilroy, Arial, Helvetica, sans-serif;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.35);
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
main h1 {
  font-size: 4rem;
  color: #fefefe;
  margin-top: 2rem;
}
main p {
  font-size: 1rem;
  color: #bbbbbb;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
main #grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
main #grid .cell {
  position: relative;
  height: 5rem;
  width: 5rem;
  border: 2px dashed #aaa;
  border-radius: 0.625rem;
  overflow: hidden;
}
main #grid .cell img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .btn-container {
  margin: 2rem 0 4rem 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
main .btn-container button {
  padding: 0.75rem 1rem;
  font-size: 1.25rem;
  width: 90%;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.2s ease-in;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-family: "Outfit", Arial, Helvetica, sans-serif;
}
main .btn-container button:active {
  transform: scale(0.95);
}
main .btn-container #generate {
  background-color: #fa3a3b;
  color: white;
  box-shadow: rgba(255, 60, 60, 0.3) 0px 0px 72px 0px, rgba(255, 255, 255, 0.6) 0px 1px 0px 0px inset, rgba(255, 60, 60, 0.12) 0px 0px 0px 6px;
}
main .btn-container #reset {
  background-color: #e4e2e2;
  color: #0f0f0f;
  box-shadow: rgba(161, 161, 161, 0.3) 0px 0px 72px 0px, rgba(255, 255, 255, 0.6) 0px 1px 0px 0px inset, rgba(124, 124, 124, 0.12) 0px 0px 0px 6px;
}
main .credit {
  width: 100%;
  height: 4rem;
  border-top: 0.5px solid #ababab;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
}
main .credit p {
  margin: 0;
  color: #a1a1a1;
  font-size: 0.875rem;
}
main .credit p a {
  text-decoration: none;
  color: #fafafa;
  font-weight: semibold;
  font-family: "Outfit", Arial, Helvetica, sans-serif;
  border-bottom: 1px solid #fafafa;
}
main .credit p span {
  background-color: #1a1a1a;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
}

@media screen and (min-width: 900px) {
  main #grid {
    grid-template-columns: repeat(8, 1fr);
  }
  main #grid .cell {
    height: 6rem;
    width: 6rem;
  }
  main .btn-container {
    max-width: 400px;
  }
  main .credit {
    width: 100%;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 0 3rem;
  }
}/*# sourceMappingURL=style.css.map */