
body, html {
  background-color: #202020;
  height: 100%;
}

* {
  box-sizing: border-box;
}

.bg-image {
  background-image: url("/lev3.jpg");

/*  filter: blur(6px);
  -webkit-filter: blur(6px);
*/
  height: 100%;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-text {
  color: white;

  #border: 3px solid #f1f1f1;
  position: absolute;
  top: 15%;
  left: 8%;
  z-index: 2;
  /*width: 100%;*/
  padding: 2px;
  text-align: left;
  text-shadow: 0px 0px 10px #202020, 0 0 15px #202020, 0 0 5px #202020;

}

.bg-list {
  color: white;
  position: absolute;
  top: 90%;
  left: 70%;
  z-index: 2;
  width: 20%;
  padding: 2px;
  text-align: right;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
  font-size: 3rem;
  white-space: nowrap;
  text-shadow: 0px 0px 10px #202020, 0 0 15px #202020, 0 0 5px #202020;

}

h1 {
  text-transform: uppercase;
  margin: 0;
  font-size: 4rem;
  white-space: nowrap;
}

ul {
  list-style: none; /* Remove list bullets */
  padding: 0;
  margin: 0;
}

li {
  padding-left: 16px;
}

a:link {
  text-decoration: none;
  color: white;
}
a:hover {
  text-decoration: underline;
  color: white;
}
