html {
  font-size: calc(15px + 0.390625vw);
}

body {
  padding: 0px;
  margin: 0px;
  font-family: sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
  color: whitesmoke;
}

#hello {
  font-weight: bold;
}

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

#container {
  width: 100vw;
  height: 100vh;
  background: linear-gradient(202deg, #533641, #3d4953, #445e3e, #6c8042);
  background-size: 800% 800%;
  -webkit-animation: bg 8s ease infinite;
  -moz-animation: bg 8s ease infinite;
  animation: bg 8s ease infinite;
}

.debug {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: 2px red solid;
}

.header {
  margin: 1em;
  width: 90vw;
}

.flex {
  display: flex;
}

.wrap {
  flex-wrap: wrap;
}

.center {
  justify-content: center;
  align-content: center;
  align-items: center;
  justify-items: center;
}

.button {
  width: auto;
  height: 3em;
  padding: 0.5em;
  border-radius: 0.5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: bold;
  background-color: #1b1b1b;
  color: whitesmoke;
  transition: all;
  transition-duration: 500ms;
  cursor: pointer;
  border: 2px #2b2b2b solid;
  filter: drop-shadow(0px 0px 4px #0b0b0b);
}

.button:hover {
  background-color: #232323;
  border: 2px #555555 solid;
  filter: drop-shadow(0px 0px 20px #bad80a);
}

.tweetz {
    background-color: #1d9bf0;
    filter: drop-shadow(0px 0px 4px #00000000);
}

.tweet {
    width: auto;
    height: 2rem;
    padding: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 1rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
      Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-weight: bold;
    background-color: #1d9bf0;
    color: white;
    transition: all;
    transition-duration: 500ms;
    filter: drop-shadow(0px 0px 20px #1d9bf000);
    border: 0px;
    cursor: pointer;
  }
  
  .tweet:hover {
    filter: drop-shadow(0px 0px 20px #1d9bf0);
  }

.breaker {
  width: 100%;
  height: 1em;
}

.hide {
  display: none;
}

.disappear {
  opacity: 0;
}

.splash {
  position: fixed;
  padding: 0;
  margin: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-color: #0e0e0e;
  transition: all 1000ms;
}

.paragraph {
    font-size: 1rem;
    padding: 2em;
}

.inline-link {
    text-decoration: underline;
    background-color: #bad80a00;
    transition: all 1000ms;
}

.inline-link:hover {
    background-color: #bad80a;
    color: black;
}

.counters {
  font-size: 0.8rem;
  margin: 1.5rem;
}

.share {
    position: fixed;
    bottom: 1%;
    padding: 1em;
    margin: 1em;
}

.version {
  position: fixed;
  bottom: 0%;
  left: 0%;
  opacity: 21%;
  font-family: monospace;
  font-size: x-small;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

@-webkit-keyframes bg {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  @-moz-keyframes bg {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  @keyframes bg {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }