body {
  background-color: #383838;
  display: flex;
  cursor: none;
  font-family: 'Work Sans', sans-serif;
  color: #fcfcfc;
}

.container{
  position:relative;
  width: 90vw;
  height: 90vh;
  margin: auto;
}

.copyright-text {
  font-size: 0.7em;
  color: #949494;
  text-align: center;
}

#pointer {
  max-width: 10vw;
  transform-origin: center 59%;
  touch-action: none;
}
#coddiction-text {
    margin-top: 5vw;
}
img {
    max-width: 70vw;
    height: auto;
}
.body-text {
    display: block;
    text-align: center;
    margin-top: 5%;
    font-size: 1em;
}
strong {
    font-weight: 700;
}
.underline {
  border-bottom: 2px solid #fcfcfc;
  padding: 10px 0;
  margin-top: 25px;
}
.brand-text-color {
  color: #6cffb2;
}

/** Blinking terminal cursor suffix **/
.blinking-cursor {
  position: relative;
  display: inline-block;
  font-family: 'Source Code Pro', monospace;
  font-weight: 400;
  line-height: 24px;
}

.blinking-cursor::after {
  content: "";
  position: absolute;
  top: 0;
  right: -15px;
  display: inline-block;
  /*background-color: #606060;*/
  background-color: #6cffb2;
  vertical-align: top;
  width: 10px;
  height: 24px;
  -webkit-animation: blink 1s step-end infinite;
  animation: blink 1s step-end infinite;
}

@-webkit-keyframes blink {
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

@keyframes blink {
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}


/** cursor customization **/
body .cursor {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  /*hide cursor on mobile*/
  body .cursor {
    visibility: hidden;
    display: none;
  }
}
body .cursor__ball {
  position: fixed;
  top: 0;
  left: 0;
  mix-blend-mode: difference;
  z-index: 1000;
}
body .cursor__ball circle {
  fill: #6cffb2;
}
body .content {
  height: 95%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

