* {
  transition: all 0.3s;
}

main, html {
  background: #212121;
  color: white;
  font-family: "Rubik", sans-serif;
}

main {
  max-width: 652px;
  margin: 0 auto;
  box-shadow: 4px 4px 16px #0d0d0d;
  border-radius: 8px;
  padding: 8px;
  opacity: 0;
  height: calc(100% - 32px);
}

body {
  transition: opacity 1s;
  height: calc(100vh - 16px);
  margin: 0;
  padding: 8px;
  background-color: #101417;
}

html {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

a {
  color: white;
  text-decoration: none;
}

scroll {
  height: 100%;
  display: block;
  overflow-y: scroll;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-thumb {
  border: 4px solid rgba(0, 0, 0, 0);
  border-radius: 50px;
  background-clip: padding-box;
  background-color: #37474f;
  opacity: 0.6;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #37474f;
}

table {
  width: 100%;
  font-family: "Share Tech Mono", monospace;
  border-collapse: collapse;
  border-radius: 4px;
  overflow: hidden;
}
table td {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 0;
  padding: 4px;
}
table td:first-child {
  width: 70%;
}
table td:nth-child(2) {
  text-align: end;
}
table tr:nth-child(odd) {
  background: #2f2f2f;
}
table th {
  border-right: solid 1px #37474f;
  padding-bottom: 4px;
}
table th icon {
  display: none !important;
}
table th.order icon {
  display: initial !important;
}

nav {
  width: 100%;
}

.empty {
  color: gray;
  border: dashed;
  border-radius: 8px;
  padding: 24px 12px;
  margin: 4px;
  display: inline-block;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  position: relative;
  font-size: 2em;
}

.hide {
  display: none;
}

.checkbox {
  line-height: 1.5em;
  font-size: 1em;
  display: grid;
  grid-template-columns: 1em 0em auto;
  gap: 1.5em;
}
.checkbox.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.checkbox input {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  appearance: none;
  /* For iOS < 15 */
  background-color: transparent;
  /* Not removed via appearance */
  margin: 0;
  margin-bottom: 0 !important;
  font-size: 1em;
  width: 1.5em;
  height: 1.5em;
  border: 1px solid;
  display: grid;
  place-content: center;
}
.checkbox input::before {
  content: "";
  width: 1em;
  height: 1em;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em white;
  /* Windows High Contrast Mode */
  background-color: CanvasText;
}
.checkbox input:checked::before {
  transform: scale(1);
}

h1, h2 {
  font-family: "Bree Serif", serif;
  border-bottom: solid 2px #37474f;
  padding-bottom: 8px;
}

code {
  font-family: "Share Tech Mono", monospace;
  background: #37474f;
  display: block;
  margin: 4px;
  padding: 4px 12px;
  border-radius: 4px;
  transition: all 0.5s;
}
code:hover {
  border-radius: 16px;
  background-color: #546e7a;
}

input, button {
  font-family: "Share Tech Mono", monospace;
  background: transparent;
  color: white;
  border: solid 1px;
  padding: 4px 12px;
  border-radius: 4px;
}

input[type=submit]:hover, button:hover {
  background: #37474f;
  border-color: #37474f;
}
input[type=submit]:hover:active, button:hover:active {
  color: #37474f;
  background: #101417;
  border-color: #101417;
}

hr {
  border: solid 1px #37474f;
}

.material-symbols-rounded {
  font-size: inherit;
  translate: 0 0.1em;
}

.show {
  opacity: 1;
}

.flex, info {
  display: flex;
}
.flex > *, info > * {
  flex: 1;
}
.flex.col, info.col {
  lex-direction: column;
}

#tasks {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
#tasks a {
  min-width: 160px;
  height: 200px;
  flex: 1;
  text-decoration: none;
  border-radius: 4px;
  overflow: hidden;
  margin: 2px;
  position: relative;
  background: #37474f;
  transition: all 0.3s;
  color: rgba(255, 255, 255, 0.4509803922);
}
#tasks a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
}
#tasks a span {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 50%;
  left: 0;
  translate: 0 50%;
  transition: all 0.3s;
  color: transparent;
  scale: 4;
  -webkit-text-stroke: 0.2px white;
  padding: 12px 0;
  font-size: 1.2em;
}
#tasks a:hover {
  color: white;
  border-radius: 16px;
}
#tasks a:hover span {
  scale: 1;
  -webkit-text-stroke: 0px black;
  color: white;
  background: rgba(0, 0, 0, 0.5294117647);
}
#tasks a:hover img {
  filter: brightness(0.7);
  scale: 1.5;
}

#no-internet {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  font-size: 3em;
  color: transparent;
  -webkit-text-stroke: 1px white;
}

@media only screen and (max-width: 600px) {
  info {
    flex-direction: column;
  }
  body {
    padding: 0;
    min-height: 100vh;
  }
  main {
    box-shadow: none;
    border-radius: 0;
    max-width: 100vw !important;
    min-height: calc(100vh - 16px);
  }
}
info h3 {
  margin: 0;
  font-size: 0.75em;
}
info h3 icon {
  padding: 0 4px;
}

body {
  background-image: url(data:image/png;base64,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);
}

/*# sourceMappingURL=main.css.map */
