body, html {
    height: 100%;
    margin: 0;
    background-color: #101720 ;
    font-family: monospace;
    color:#FAF5FF;
}

* {
    box-sizing: border-box;
}

h2 {
    margin: 2.5%;
}

p {
    margin:2.5%;
    padding:1%;
}

ul {
    list-style:none;
}

a {
    color: #4e77b5;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    transition: .2s;

    &:hover {
        filter:brightness(150%);  
    }
}

#canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}

.background-image {
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: url("./background.gif");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    filter: blur(5px) brightness(50%);
    box-shadow: 0 0 200px rgba(0,0,0,0.9) inset;
    overflow: hidden;
}

.title {
    position: absolute;
    margin: auto;
    right: 0;
    left: 0;
    text-align: center;
}

.center-container {
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width:25%;
    height: 50%;
    outline: 2px solid #FAF5FF;
    background-color: rgba(16, 23, 32, 75%);
    box-shadow: 10px 10px #FAF5FF;
}