body {
    background-color: black;
    background: radial-gradient(circle, #3a0657 0%, rgba(0,0,0,1) 84%);
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
#parallax-container{
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}
#parallax-container .parallax-layer{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 40%;
    object-fit: contain;
    transform: rotate(-30deg);
}
h1{
    font-size: 150%;
    font-weight: bolder;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #00010a;
    color: #b5b2cd;
    margin: 0;
    padding: 1% 2%;
}

a{
    text-decoration: none;
    color: #3d005e;
}