/* RESET */
body {
  margin: 0;
  padding: 0;
  background: black;
  color: #cfe9ff;
  font-family: "Courier New", monospace;
  text-align: center;
}

/* STARFIELD BACKGROUND */
body {
  background-image:
    radial-gradient(1px 1px at 20px 30px, white, transparent),
    radial-gradient(1px 1px at 100px 150px, white, transparent),
    radial-gradient(1px 1px at 200px 80px, white, transparent),
    radial-gradient(1px 1px at 300px 200px, white, transparent);
  background-size: 400px 400px;
}

/* PANELS */
.panel {
  border: 1px solid #2a5f8f;
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  margin: 40px auto;
  max-width: 500px;
  position: relative;
}

/* HEADERS */
h1 {
  font-size: 26px;
  margin-bottom: 20px;
}

/* LABELS */
.label {
  font-size: 11px;
  opacity: 0.7;
  margin-bottom: 10px;
  color: #6ec1ff;
}

/* ORBIT SYSTEM */
.orbit {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 30px auto;
}

.planet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
}
/* TYPING TEXT */
#typing {
  white-space: pre-line;
  font-size: 14px;
  min-height: 60px;
}

.me {
  background: #fcfcfc;
  animation: spin 6s linear infinite;
}

.you {
  background: #fcfcfc;
  animation: spin 6s linear infinite reverse;
}

@keyframes spin {
  from {
    transform: rotate(0deg) translateX(50px);
  }
  to {
    transform: rotate(360deg) translateX(50px);
  }
}

/* COORDINATES */
.coordinates {
  font-size: 13px;
  opacity: 0.85;
}

.crawl {
  perspective: 300px;
  height: 200px;
  overflow: hidden;
  text-align: center;
}

.crawl p {
  transform: rotateX(20deg);
  animation: crawl 20s linear infinite;
  font-size: 14px;
  color: #f5c542;
}
@media (max-width: 600px) {

  body {
    font-size: 16px;
  }

  .container {
    margin: 20px;
    padding: 15px;
  }

  h1 {
    font-size: 28px;
  }

  .panel {
    margin-bottom: 20px; no 
    padding: 15px;
  }
/* LINK COLOR FIX */
a,
a:visited {
  color: #b88b9b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


