@font-face {
    font-family: Neuropol;
    src: url(/Assets/fonts/Neuropol.otf);
}

* {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

body {
    margin: 0;
    background-color: black;
}

.bg {
    position: fixed;
    background: #050E07;
    background: linear-gradient(0deg, rgba(5, 14, 7, 1) 0%, rgba(0, 0, 0, 1) 100%);
    background-size: contain;
    width: 100vw;
    height: 100vh;
}
.content {
    position: relative;
    width: 50vw;
    height: 30vh;
    background-color: rgb(11, 31, 16);
    margin: auto;
}
.content-highlight {
    width: 100%;
    height: 100%;
    background-color: rgb(153, 153, 153);

    -webkit-mask-image: url("/Assets/UI/MetalMask.webp");
    mask-image: url("/Assets/UI/MetalMask.webp");
    mask-size: 700px;


    box-shadow: inset 0 0 0 3px rgb(51, 51, 51),
    inset 0 0 0 3px rgb(51, 51, 51),
    inset 0 0 0 3px rgb(51, 51, 51),
    inset 0px 0px 20px 3px rgb(43, 179, 1);
}
#splash {
    position: absolute;
    width: 50vw;
    left: 0;
    right: 0;
    margin-inline: auto;
    top: 100px;
}
#introCanvas{
    position: absolute;
    width: 50vw;
    left: 0;
    right: 0;
    margin-inline: auto;
    top: 100px;
    background-color: transparent;
}

.logo {
    position: absolute;
    width: 20vw;
    left: 0;
    right: 0;
    margin-inline: auto;
    top: 100px;
}

p {
    font-family: Neuropol;
    color: white;
}

.content-middle {
    width: 50vw;
    margin: auto;
}

.videobox {
    position: absolute;
    width: 390px;
    height: 219px;
}
.videobox img {
    position: absolute;
    margin: 0 0 0 0;
    top: -20px;
    left: -20px;
    pointer-events: none;
}
.videobox#left {
    transform: perspective(500px) rotate3d(0,1,0, 25deg);
}
.videobox iframe {
    margin: 0 0 0 0;
    transform-origin: top left;
    transform: scale(0.3);
}