html{
    height: 100%;
    margin: 0px;
}

body{
    text-align: justify;
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    font-family: Arial, Helvetica, sans-serif;
    height: 100%;
    margin: 0px;
    opacity: 0;
}

.contentcontainer{
    position: relative;
    z-index: 1;
    width: 80vw;
    margin-left: 10vw;
    margin-right: 10vw;
}

.bg{
    background-image: url(images/background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
    height: 100%;
}

a:link {
    color: rgb(251, 122, 255);
  }
  
/* visited link */
a:visited {
    color: rgb(255, 0, 242);
}
  
/* mouse over link */
a:hover {
    color: rgb(170, 0, 147);
}

h1{
    font-size: 40px;
}

p{
    font-size: larger;
}

.neonText {
    color: #fff;
    text-shadow:
    0 0 51px #8802C5;
}

@keyframes flicker {
0%, 18%, 22%, 25%, 53%, 57%, 100% {
    text-shadow:
        0 0 21px #fff,
        0 0 151px #8802C5;
    }
    20%, 24%, 55% {       
        text-shadow: none;
    }
}