body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #0f0f0f;
  overflow: hidden;
  overflow-y: hidden; /* Hide vertical scrollbar */
  overflow-x: hidden; /* Hide horizontal scrollbar */
  }

a:link{
      color: white;
      -webkit-text-decoration: none;
      text-decoration: none;
    }
    
a:visited {
      color: white;
      -webkit-text-decoration: none;
      text-decoration: none;
    }
    
a:hover {
      color: white;
      -webkit-text-decoration: none;
      text-decoration: none;
    }
    
a:active {
      color: white;  
      -webkit-text-decoration: none;
      text-decoration: none;
    }

.stage {
  position: relative;
  }

.textbox{
  background-blend-mode: screen;
  background-color: rgb(70, 70, 70);
  color: aliceblue;
  border-radius: 25px;
  opacity: 0.8;
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: .8em;
  text-align: center;
}

.textbox p{
  font-style: italic;
  line-height: 0.5;
}
.textbox h3 {
  font-weight: normal;
}

.pageviews {
  font-style: normal;
  font-size:xx-large; 
  border-style: solid; 
  padding: 2px;
}

.textbox br {
  line-height: 0.5;
}

.textbox img {
  filter: grayscale();
}