body {
  background: #110542;
}

b {
  font-weight: bold;
}

a {
  color: #153;
}
.top-nav a {
  color: #9ca;
}
.contributors a {
  color: #153 !important;
}

a:hover {
  color: #275;
}
a:visited {
  color: #135;
}
.top-nav a:visited {
  color: #9ac;
}
.contributors a:visited {
  color: #135 !important;
}

.top-nav a:hover {
  color: #9fc;
}
.contributors a:hover {
  color: #275 !important;
}

a:visited:hover {
  color: #257;
}
.contributors a:visited:hover {
  color: #257 !important;
}
.top-nav a:visited:hover {
  color: #9cf;
}

.top-nav {
  display: flex;

  margin: auto;
  padding: 0.75em;
  max-width: 720px;
}

.main-heading {
  /* color: #CCe8ff; */
  color: #38a5ff;
  text-align: center;
}

.loading {
  margin: auto;
  position: relative;

  /* left: 50%;
     top: 50%;
     margin: -60px 0 0 -60px; */
  background: #8f90cc;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  border: 10px solid #1969e1;
}
.loading::after {
  content: '';
  background: transparent;
  width: 140%;
  height: 140%;
  position: absolute;
  border-radius: 100%;
  top: -20%;
  left: -20%;
  opacity: 0.7;
  box-shadow: rgba(255, 255, 255, 0.6) -4px -5px 3px -3px;
  -webkit-animation: rotate 2s infinite linear;
  -moz-animation: rotate 2s infinite linear;
  -o-animation: rotate 2s infinite linear;
  animation: rotate 2s infinite linear;
}

.contributors {
  margin-top: 1em;
  padding: 0.25em;

  font-size: 1em;

  background-color: #bfbfbf;
  color: #111;
}
.contributors h1 {
  margin-bottom: 0.25em;
}
.contributors ul {
  display: flex;
  flex-wrap: wrap;
}
.contributors li {
  margin-left: 0.5em;

  font-size: 0.75rem;
}

@keyframes rotate {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}

@keyframes hover {
  0% {
    transform: translateY(3%);
  }
  50% {
    transform: translateY(-3%);
  }
  100% {
    transform: translateY(3%);
  }
}
.hover {
  animation: hover 3s infinite ease-in-out;
}

#alert {
  /* color: #CCe8ff; */
  color: #000;
  font-size: 1em;
  text-align: center;
  width: 85%;
  max-width: 300px;
  display: block;
  margin: auto;
  margin-bottom: 30px;
  padding: 0.5em;
}
#main-container {
  width: 50vw;
  height: auto;
  display: block;
  margin: auto;
  padding-top: 20px;
}
.speech-bubble {
  position: relative;
  background: #8f90cc;
  border-radius: 0.4em;
  padding: 5px;
}

.speech-bubble::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 55%;
  width: 0;
  height: 0;
  border: 20px solid transparent;
  border-top-color: #8f90cc;
  border-bottom: 0;
  border-left: 0;
  margin-left: -10px;
  margin-bottom: -20px;
}
.wes {
  display: block;
  margin: auto;
  margin-bottom: 20px;
  width: 100%;
  height: auto;
  max-width: 100px;
  max-height: 275px;
}

.--center {
  text-align: center;
}

.--mono {
  font-family: monospace;
}

p {
  line-height: 1.25em;
}

em {
  font-style: italic;
}

/* Tablet & Desktop */

@media (min-width: 720px) {
  p {
    line-height: 1.5em;
  }
}

/***** Mobile S - 320px ****/
@media screen and (min-width: 320px) {
  .main-heading {
    font-size: 1.5em;
  }
  #alert {
    max-width: 200px;
    font-size: 1.25em;
  }
  #main-container {
    width: 90vw;
    height: 100vh;
    display: block;
    margin: auto;
    padding-top: 5px;
  }
  .loading {
    margin: auto;
    position: relative;

    /* left: 50%;
       top: 50%;
       margin: -60px 0 0 -60px; */
    background: #8f90cc;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 10px solid #1969e1;
  }
  .loading::after {
    content: '';
    background: transparent;
    width: 150%;
    height: 150%;
    position: absolute;
    border-radius: 100%;
    top: -25%;
    left: -25%;
    opacity: 0.7;
    box-shadow: rgba(255, 255, 255, 0.6) -4px -5px 3px -3px;
    -webkit-animation: rotate 2s infinite linear;
    -moz-animation: rotate 2s infinite linear;
    -o-animation: rotate 2s infinite linear;
    animation: rotate 2s infinite linear;
  }
  .wes {
    display: block;
    margin: auto;
    margin-bottom: 20px;
    width: 100%;
    height: auto;
    max-width: 50px;
    max-height: auto;
  }
}

/***** Mobile M - 375px ****/
@media screen and (min-width: 375px) {
  .main-heading {
    font-size: 1.75em;
  }
  #alert {
    font-size: 1.25em;
  }
  #main-container {
    width: 90vw;
    height: 100vh;
    display: block;
    margin: auto;
    padding-top: 5px;
  }
  .loading {
    margin: auto;
    position: relative;

    /* left: 50%;
        top: 50%;
        margin: -60px 0 0 -60px; */
    background: #8f90cc;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    border: 10px solid #1969e1;
  }
  .loading::after {
    content: '';
    background: transparent;
    width: 155%;
    height: 155%;
    position: absolute;
    border-radius: 100%;
    top: -30%;
    left: -30%;
    opacity: 0.7;
    box-shadow: rgba(255, 255, 255, 0.6) -4px -5px 3px -3px;
    -webkit-animation: rotate 2s infinite linear;
    -moz-animation: rotate 2s infinite linear;
    -o-animation: rotate 2s infinite linear;
    animation: rotate 2s infinite linear;
  }
  .wes {
    display: block;
    margin: auto;
    margin-bottom: 20px;
    width: 100%;
    height: auto;
    max-width: 60px;
    max-height: auto;
  }
}

/***** Mobile L - 425px ****/
@media screen and (min-width: 425px) {
  .main-heading {
    font-size: 1.85em;
  }
  #alert {
    font-size: 1.35em;
  }
  #main-container {
    width: 90vw;
    height: 100vh;
    display: block;
    margin: auto;
    padding-top: 5px;
  }
  .loading {
    margin: auto;
    position: relative;

    /* left: 50%;
       top: 50%;
       margin: -60px 0 0 -60px; */
    background: #8f90cc;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    border: 10px solid #1969e1;
  }
  .loading::after {
    content: '';
    background: transparent;
    width: 160%;
    height: 160%;
    position: absolute;
    border-radius: 100%;
    top: -30%;
    left: -30%;
    opacity: 0.7;
    box-shadow: rgba(255, 255, 255, 0.6) -4px -5px 3px -3px;
    -webkit-animation: rotate 2s infinite linear;
    -moz-animation: rotate 2s infinite linear;
    -o-animation: rotate 2s infinite linear;
    animation: rotate 2s infinite linear;
  }
  .wes {
    display: block;
    margin: auto;
    margin-bottom: 20px;
    width: 100%;
    height: auto;
    max-width: 70px;
    max-height: auto;
  }
}

/***** Tablet - 768px ****/
@media screen and (min-width: 768px) {
  .main-heading {
    font-size: 1.9em;
  }
  #alert {
    max-width: 425px;
    font-size: 1.5em;
  }
  #main-container {
    width: 90vw;
    height: 100vh;
    display: block;
    margin: auto;
    padding-top: 5px;
  }
  .loading {
    margin: auto;
    position: relative;

    /* left: 50%;
       top: 50%;
       margin: -60px 0 0 -60px; */
    background: #8f90cc;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    border: 10px solid #1969e1;
  }
  .loading::after {
    content: '';
    background: transparent;
    width: 165%;
    height: 165%;
    position: absolute;
    border-radius: 100%;
    top: -30%;
    left: -30%;
    opacity: 0.7;
    box-shadow: rgba(255, 255, 255, 0.6) -4px -5px 3px -3px;
    -webkit-animation: rotate 2s infinite linear;
    -moz-animation: rotate 2s infinite linear;
    -o-animation: rotate 2s infinite linear;
    animation: rotate 2s infinite linear;
  }
  .wes {
    display: block;
    margin: auto;
    margin-bottom: 20px;
    width: 100%;
    height: auto;
    max-width: 80px;
    max-height: auto;
  }
}

/***** Laptop - 1024px ****/
@media screen and (min-width: 1024px) {
  .main-heading {
    font-size: 2.5em;
  }
  #alert {
    max-width: 500px;
    font-size: 1.8em;
  }
  #main-container {
    width: 90vw;
    height: 100vh;
    display: block;
    margin: auto;
    padding-top: 5px;
  }
  .loading {
    margin: auto;
    position: relative;

    /* left: 50%;
       top: 50%;
       margin: -60px 0 0 -60px; */
    background: #8f90cc;
    width: 90px;
    height: 90px;
    border-radius: 100%;
    border: 10px solid #1969e1;
  }
  .loading::after {
    content: '';
    background: transparent;
    width: 170%;
    height: 170%;
    position: absolute;
    border-radius: 100%;
    top: -35%;
    left: -35%;
    opacity: 0.7;
    box-shadow: rgba(255, 255, 255, 0.6) -4px -5px 3px -3px;
    -webkit-animation: rotate 2s infinite linear;
    -moz-animation: rotate 2s infinite linear;
    -o-animation: rotate 2s infinite linear;
    animation: rotate 2s infinite linear;
  }
  .wes {
    display: block;
    margin: auto;
    margin-bottom: 20px;
    width: 100%;
    height: auto;
    max-width: 90px;
    max-height: auto;
  }
}

/***** Laptop L - 1440px ****/
@media screen and (min-width: 1440px) {
  .main-heading {
    font-size: 2.75em;
  }
  #alert {
    font-size: 2em;
  }
  #main-container {
    width: 90vw;
    height: 100vh;
    display: block;
    margin: auto;
    padding-top: 5px;
  }
  .loading {
    margin: auto;
    position: relative;

    /* left: 50%;
       top: 50%;
       margin: -60px 0 0 -60px; */
    background: #8f90cc;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    border: 10px solid #1969e1;
  }
  .loading::after {
    content: '';
    background: transparent;
    width: 175%;
    height: 175%;
    position: absolute;
    border-radius: 100%;
    top: -35%;
    left: -35%;
    opacity: 0.7;
    box-shadow: rgba(255, 255, 255, 0.6) -4px -5px 3px -3px;
    -webkit-animation: rotate 2s infinite linear;
    -moz-animation: rotate 2s infinite linear;
    -o-animation: rotate 2s infinite linear;
    animation: rotate 2s infinite linear;
  }
  .wes {
    display: block;
    margin: auto;
    margin-bottom: 30px;
    width: 100%;
    height: auto;
    max-width: 100px;
    max-height: auto;
  }
}

/***** 4k - 2560px ****/
@media screen and (min-width: 2560px) {
  .main-heading {
    font-size: 3em;
  }
  #alert {
    font-size: 2.5em;
  }
  #main-container {
    width: 90vw;
    height: 100vh;
    display: block;
    margin: auto;
    padding-top: 5px;
  }
  .loading {
    margin: auto;
    position: relative;

    /* left: 50%;
       top: 50%;
       margin: -60px 0 0 -60px; */
    background: #8f90cc;
    width: 120px;
    height: 120px;
    border-radius: 100%;
    border: 10px solid #1969e1;
  }
  .loading::after {
    content: '';
    background: transparent;
    width: 175%;
    height: 175%;
    position: absolute;
    border-radius: 100%;
    top: -35%;
    left: -35%;
    opacity: 0.7;
    box-shadow: rgba(255, 255, 255, 0.6) -4px -5px 3px -3px;
    -webkit-animation: rotate 2s infinite linear;
    -moz-animation: rotate 2s infinite linear;
    -o-animation: rotate 2s infinite linear;
    animation: rotate 2s infinite linear;
  }
  .wes {
    display: block;
    margin: auto;
    margin-bottom: 40px;
    width: 100%;
    height: auto;
    max-width: 100px;
    max-height: auto;
  }
}
