body {
  background-color: black;
}

#web {
 display: grid;
}

#circle {
  background-color: white;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  display: grid;
  justify-content: center;
  position: fixed;
  box-shadow: 0 0 10px rgba(255, 255, 255, 1),
              0 0 20px rgba(255, 255, 255, 0.8),
              0 0 30px rgba(255, 255, 255, 0.6),
              0 0 40px rgba(255, 255, 255, 0.4),
              0 0 50px rgba(255, 255, 255, 0.2);
}

#pophold {
  width: 200px;
  height: auto;
  background-color: white;
  top: 25px;
  position: relative;
  border-radius: 10px;
  border-width: 3px;
  border-color: #d8e1f0;
  border-style: solid;
  box-shadow: 0 0 10px rgba(216, 225, 240, 1),
              0 0 50px rgba(255, 255, 255, 0.2);
}

#pophold h1 {
  font-family: monospace;
  font-size: 20px;
  color: black;
  margin: 5px;
  padding-left: 2px;
}
#pophold p {
  font-family: monospace;
  font-size: 15px;
  color: black;
  margin: 0px;
  margin-bottom: 5px;
  padding-left: 5px;
}
