* {
  box-sizing: border-box;
}

html,
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  width: 100%;
  font-family: "Fragment Mono", monospace;
  background-color: #f5f5f5;
  color: #0a0a0a;
  height: 100vh;
  font-size: 16px;
  text-transform: lowercase;
  position: relative;
}

::-moz-selection {
  background-color: #0a0a0a;
  color: #fff;
}

::selection {
  background-color: #0a0a0a;
  color: #fff;
}

header,
footer {
  width: 100%;
  color: #a3a3a3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  position: fixed;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 768px) {
  header,
  footer {
    display: none;
  }
}

footer {
  top: unset;
  bottom: 0;
}

.wrapper {
  width: 1200px;
  margin: 0 auto;
  font-size: 0.875rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media only screen and (max-width: 768px) {
  .wrapper {
    width: 100%;
    padding: 0.5rem;
  }
}
.wrapper .row {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .wrapper .row {
    flex-wrap: wrap;
  }
}
.wrapper .row .card {
  background-color: #fff;
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 280px;
  height: 140px;
  margin: 0 0.25rem 0.25rem 0;
}
@media only screen and (max-width: 768px) {
  .wrapper .row .card {
    width: calc(100vw - 1rem);
    margin: 0 0 0.25rem 0;
  }
}
.wrapper .row .card .text {
  color: #a3a3a3;
}
.wrapper .row .card .text.primary {
  color: #0a0a0a;
}
.wrapper .row .card .btns {
  display: flex;
  gap: 0.5rem;
}
.wrapper .row .card .btns a {
  display: block;
  text-decoration: none;
  color: #0a0a0a;
  background-color: #f5f5f5;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  flex: 1;
  text-align: center;
  white-space: nowrap;
}
.wrapper .row .card .btns a:hover {
  background-color: #e5e5e5;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.wrapper .row .card .btns a.not-allowed {
  cursor: not-allowed;
  background-color: #f5f5f5;
  color: #a3a3a3;
}
.wrapper .row .card .btns a.not-allowed:hover {
  background-color: #f5f5f5;
  color: #a3a3a3;
}
.wrapper .row .card.full {
  width: calc(560px + 0.25rem);
}
@media only screen and (max-width: 768px) {
  .wrapper .row .card.full {
    width: calc(100vw - 1rem);
    margin: 0 0 0.25rem 0;
  }
}/*# sourceMappingURL=main.css.map */