@keyframes flicker {
  0% {
    text-shadow: black 0 0 50px;
  }
  50% {
    text-shadow: rgba(0, 0, 0, var(--rand)) 0 0 50px;
  }
  100% {
    text-shadow: black 0 0 50px;
  }
}

html,
body {
  height: 100%;
  margin: 0;
  background-color: #121212;
  color: #b0b0b0;
  font-family: monospace;
  cursor: url("../img/cur.png"), auto;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  text-shadow: #000 0 0 50px;
}

h1 {
  font-family: monospace;
  font-size: 50px;
  color: #a9a9a9;
}

hr.solid {
  margin: 5px 0 0;
  width: 200px;
  font-family: Arial, Helvetica, sans-serif;
  border-color: #333333;
}

.accent {
  color: #333333;
  text-shadow: #333333 0 0 50px;
}

.accent1 {
  color: rgba(59, 59, 59, 0.5);
  text-shadow: rgba(134, 134, 134, 0.5), 0 0 50px;
}

a:link {
  color: #b0b0b0;
}

a:visited {
  color: #b0b0b0;
}

a {
  transition: 0.3s;
}

a:hover {
  color: #333333;
  cursor: url("cur.png"), auto;
}

a:active {
  color: #b0b0b0;
}

a:link,
a:visited {
  text-decoration: none;
}

.flickertext {
  --rand: 0;
  animation: flicker 1s infinite;
}

.clicktocontinuecontainer {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  opacity: 0;
  transition: 0.3s;
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.clicktocontinuecontainer:hover {
  opacity: 0.6;
}

.center {
  margin: 0;
  text-align: center;
}

.flex-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 5px;
}

#hiddencontainer {
  display: none;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  opacity: 0;
  transition: opacity 3s ease;
}

#flexboxcontainer {
  background-color: transparent;

  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
