body {
  width: 100vw;
  height: 100vh;
  color: #ffffff;
  margin: 0;
  background-color: #000000;
  background: radial-gradient(circle, rgba(6, 13, 14, 1) 12%, rgba(14, 36, 50, 1) 47%, rgba(24, 12, 37, 1) 100%);
  font-family: Lato;
  overflow-x: hidden;
}

.white,
.white a {
  color: #ffffff;
}

.violet,
.violet a {
  color: #ff00f2;
}

.blue,
.blue a {
  color: #00b7ff;
}

.green,
.green a {
  color: #1eff00;
}

.yellow,
.yellow a {
  color: #ffd900;
}

.orange,
.orange a {
  color: #ff7b00;
}

.red,
.red a {
  color: #ff0000;
}

.gray,
.gray a {
  color: #666666;
}

.last,
.last a {
  text-shadow: 0 0 50px #44aff1;
}

a,
a:hover,
a:focus {
  color: #666666;
  text-decoration: none;
}

table {
  width: 100vw;
  height: 91vh;
}

th {
  width: 25vw;
  height: 10vh;
  font-size: 1.5em;
  background-color: rgba(14, 36, 50, 1);
}

td {
  width: 50vw;
  /* height: 11.5vh; */
  text-align: center;
}

td .fas {
  font-size: 3em;
}

tr.star {
  font-size: 0.5em;
}

tr.star span {
  color: black;
  font-size: 1.5em;
  display: block;
  height: 0;
  position: relative;
  top: -19px;
  font-weight: bold;
}

img {
  max-width: 100%;
  max-height: 100%;
  border: 0;
}

#time {
  position: fixed;
  bottom: 0;
  height: 8vh;
  width: 100vw;
  background-color: rgba(14, 36, 50, 1);
}

#time .left,
#time .right {
  height: 8vh;
}

#time a {
  width: 100%;
  height: 100%;
  line-height: 8vh;
  color: #ffffff;
}

#footer {
  position: fixed;
  bottom: 0;
  height: 8vh;
  width: 100vw;
  background-color: rgba(14, 36, 50, 1);
  height: 8vh;
  display: flex;
}

#footer a {
  flex: 1;
  width: 100%;
  height: 100%;
  line-height: 6vh;
  text-align: center;
}

#confirm {
  display: none;
  position: absolute;
  top: 10vh;
  width: 100vw;
  height: 15vh;
  background-color: rgba(100, 100, 100, 0.98);
}

#confirm .left,
#confirm .right {
  line-height: 15vh;
  font-size: 2em;
  border-radius: 5px;
}

#confirm a {
  width: 100%;
  color: #ffffff;
}

.left,
.right {
  text-align: center;
  width: 50vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.left {
  float: left;
}

.right {
  float: right;
}

input {
  /* display: none; */
}

/* Rotate on Click */

.spin {
  -webkit-animation-name: ggAnimate;
  -webkit-animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
}

@-webkit-keyframes ggAnimate {
  from {
    -webkit-transform: rotate(0deg) scale(1);
  }

  to {
    -webkit-transform: rotate(360deg) scale(0);
  }
}

#chartWrap {
  display: none;
  background-color: #eeeeee;
  padding: 1em;
}

#chart {
  display: flex;
  align-items: center;
  justify-content: center;
}

#lineChart {
  width: 100%;
  height: 100%;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(359deg);
  }
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

/* Non-Moods Version */

#non-moods {
  padding: 1em;
  margin: 0 auto;
  max-width: 600px;

  &>div {
    text-align: center;
    margin-top: 1em;

    & i {
      font-size: 4em;
    }
  }

  output {
    display: block;
    width: 100%;
    margin-top: 1em;
    text-align: center;
  }

  section {
    font-size: 1.5em;

    & h1,
    h2 {
      margin-top: 1em;
      margin-bottom: 0.5em;
    }

    & form {
      padding: 0;
      width: 100%;

      & textarea {
        width: calc(100% - 1em);
        height: 4.5rem;
      }

      & input {
        width: calc(100% - 1em);
        font-size: 0.8em;
        margin-bottom: 0.25em;
        border-radius: 5px;
        border: none;
        min-height: 1.75em;

        &[type="submit"] {
          width: 100%;
          color: #ffffff;
          background-color: #006891;
        }

        &[name="update"],
        &[name="clear"],
        &[name="clearCD"] {
          width: 49.25%;
        }
      }

      & p {
        margin-bottom: 1em;
      }
    }
  }
}