body {
    background-image: linear-gradient(#23232D, #3C3D4D);
    background-repeat: no-repeat;
    height: 100%;
    background-attachment: fixed;
    margin: 0px;
    margin-top: 250px;
}

h1 {
    font-family: tfblock;
    font-size: 64px;
    color: white;
    text-shadow: 0px 0px 15px black;
    text-align: center;
    margin: 50px;
}

.topbar {
    width: 100%;
    height: 190px;
    position: fixed;
    top: 0;
    z-index: 10;

    background-image: linear-gradient(#111111, #222222);
    box-shadow: 0px 4px 10px black;
}

.scanlines {
    width: 100%;
    height: 100%;
    opacity: 80%;
    margin: 0%;

    position: relative;

    background-image: url("Images/Scanlines.png");

    animation-name: scanlineAnimation;
    animation-duration: 100ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.logo {
    width: 128px;
    height: 128px;

    position: absolute;
    top: 32px;
    left: 10px;
}

.topbarHeader {
    font-family: futureforces;
    font-variant: small-caps;
    font-size: 48px;

    color: white;
    text-shadow: 0px 0px 3px black;

    text-align: center;
    height: 64px;
    margin: 0px;
    margin-left: 192px;
    margin-right: 192px;
    padding-top: 32px;
}

.topbarDivider {
    height: 5px;
    margin-left: 192px;
    margin-right: 192px;
    background-color: white;
    box-shadow: 0px 0px 3px black;
    margin-bottom: 32px;
}

.topbarDivider2 {
    height: 5px;
    margin-left: 192px;
    margin-right: 336px;
    background-color: white;
    box-shadow: 0px 0px 3px black;
    margin-bottom: 32px;
}

.topbarLink {
    font-family: futureforces;
    font-variant: small-caps;
    font-size: 36px;
    padding-right: 16px;
    padding-left: 16px;

    color: white;
    text-decoration: none;
    text-shadow: 0px 0px 3px black;
    text-align: center;
    
    align-self: center;

    transition: color 0.2s, text-shadow 0.1s;

    top: 32px;

    pointer-events: all;
}

.topbarLink:visited {
    color: white;
}

.topbarLink:hover {
    color: black;
    text-shadow: 0px 0px 3px white;
}

.topbarImageLink {
    height: 96px;
    width: 96px;

    transition: filter 0.2s;

    position: absolute;
    top: 48px;

    pointer-events: all;
}

.topbarImageLink:hover {
    filter: brightness(0) drop-shadow(0px 0px 3px white);
}

.topbarLink:active {
    color: #222222;
}

.bodyContainer {
    margin: 50px 150px;
    background-image: linear-gradient(#111111, #222222);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    color: white;
    
    box-shadow: 0px 0px 15px black;
}

.containerPara {
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 25px;
    text-align: center;
}

.homeImage {
    width: 480px;
    height: 270px;
    margin: 20px;
    box-shadow: 0px 0px 10px black;
    pointer-events: all;
}

.imageContainer {
    margin-left: auto;
    margin-right: auto;
    align-content: center;
    width: 1600px;
}

.imageContainer2 {
    margin-left: auto;
    margin-right: auto;
    align-content: center;
    width: 1050px;
    padding-bottom: 25px;
}

.imageContainer3 {
    margin-left: auto;
    margin-right: auto;
    align-content: center;
    width: 1500px;
    padding-bottom: 25px;
}

.imageContainer4 {
    margin-left: auto;
    margin-right: auto;
    align-content: center;
    width: 710px;
    padding-bottom: 25px;
}

@media (max-width: 1910px) {
    .homeImage {
        width: 480px;
        height: 270px;
        margin: 8px;
        box-shadow: 0px 0px 10px black;
    }

    .imageContainer, .imageContainer2, .imageContainer3 {
        width: 480px;
    }

    .imageContainer4 {
        width: 310px;
    }
}

@media (max-width: 1610px) {
    .topbarLink {
        font-size: 24px;
        padding-right: 6px;
        padding-left: 6px;
    }
    .topbarDivider, .topbarDivider2 {
        margin-bottom: 38px;
    }
}

@keyframes scanlineAnimation {
    0% {
        background-position-y: 0px;
    }
    100% {
        background-position-y: 30px;
    }
}

@font-face {
    font-family: 'futureforces';
    src: url('Fonts/futureforces.ttf') format('truetype');
}

@font-face {
    font-family: 'tfblock';
    src: url('Fonts/TS\ Block\ Bold.ttf') format('truetype');
}
