body {
  color: rgb(214, 214, 214);
  font-family: 'Alpino-Regular';
}

html {  
  background: linear-gradient(90deg, rgb(23, 13, 34) 25%, rgb(28, 18, 40) 25%, rgba(28, 18, 40) 75%, rgb(23, 13, 34) 75%);
  background: rgb(28, 18, 40);
  padding: 32px;
  font-size: 20px;
}

.text_box {
  position: absolute;
  text-align: left;
  width: 50%;
  left: 0; right: 0;
  margin: auto;
}

a:link {
  color: rgb(192, 192, 192);
  text-decoration: none;
}

a:visited {
  color: rgb(192, 192, 192);
  text-decoration: none;
}

a:hover {
  color: rgb(238, 238, 238);
  text-decoration: underline;
}

a:active {
  color: rgb(242, 242, 242);
  text-decoration: underline;
}

@media only screen and (max-width: 800px) {
  .text_box {
    width: 90%;
  }
}