* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}
body {
  color: #2188e7;
  background-image: linear-gradient(150deg, #021f4f, #09142b);
}
.heading {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: xx-large;
}
h1 {
  font-family: sans-serif;
  font-weight: 900;
  color: #fff;
  letter-spacing: 80px;
  font-size: xxx-large;
  margin-top: 5vh;
  margin-left: 4vw;
}
h1:hover {
  text-shadow: 20px 20px 50px #2187e7;
  cursor: context-menu;
}
.main {
  display: table;
  height: 100vh;
  width: 100%;
}
.myCircle {
  display: table-cell;
  vertical-align: middle;
}
.mainCircle {
  position: relative;
  top: 0;
  height: 300px;
  width: 300px;
  margin: auto;
}
.maincontent {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.circle {
  background-color: rgba(0, 0, 0, 0);
  opacity: 0.9;
  height: 300px;
  width: 300px;
  margin-top: 0 auto;
  box-shadow: 0 0 75px #2187e7;
  border-radius: 300px;
  animation: spinPlus 2s infinite ease-in-out;
}
@keyframes spinPlus {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.11);
  }
  100% {
    transform: scale(1);
  }
}
.circle1 {
  background-color: rgba(0, 0, 0, 0);
  border: 5px solid rgba(0, 183, 229, 0.9);
  margin: 0 auto;
  position: absolute;
  top: 25px;
  left: 25px;
  height: 250px;
  width: 250px;
  border-radius: 250px;
  border-left: 5px solid rgba(0, 0, 0, 0);
  border-right: 5px solid rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 75px #2187e7;
  animation: spinPlusOff 5s infinite ease-in-out;
  background-color: #171717;
}
@keyframes spinPlusOff {
  0%,
  50%,
  100% {
    transform: rotate(0deg) scale(1.1);
  }
  50% {
    transform: rotate(360deg) scale(1);
  }
  50% {
    transform: rotate(-360deg) scale(1);
  }
}
button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5em;
  height: 2em;
  margin-left: -2.5em;
  margin-top: -1em;
  z-index: 100;
  padding: 0.25em 0.5em;
  color: #fff;
  background: #000;
  border: 1px solid #fff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.15em;
  font-weight: 200;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  transition: box-shadow 0.5s;
}
button:hover {
  background-color: #171717;
}
main {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
  text-align: center;
  color: #fff;
}
main > div {
  display: inline-block;
  width: 3px;
  height: 100px;
  margin: 0 7px;
  background: currentColor;
  transform: scaleY(0.5);
  opacity: 0.25;
}
main.error {
  color: #f7451d;
  min-width: 20em;
  max-width: 30em;
  margin: 0 auto;
  white-space: pre-line;
}
#transcript {
  position: fixed;
  width: 80vw;
  padding-left: 20vw;
  padding-right: 20vw;
  font-size: x-large;
}
p {
  position: absolute;
  left: 25%;
  top: 70%;
  padding-left: 19vw;
  font-size: x-large;
}
footer {
  display: flex;
  align-items: center;
  justify-content: center;
}
.seperation {
  height: 1vh;
  background-color: #0c3465;
}
.creds {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  align-items: center;
  justify-content: center;
  width: 80vw;
  margin: auto;
  color: white;
  gap: 10vh;
}
