@font-face {
    font-family: "Legacy";
    src: url(/fonts/legacy.otf);
}

@font-face {
    font-family: "Gadugi Bold";
    src: url(/font/gadugib.ttf);
}

p {
    position: relative;
    top: 580px;
    left: 130px;
    font-family: Gadugi Bold;
    font-weight: bold;
    font-style: italic;
    font-size: 65px;
    color: #dddddd;
}

h1 {
    z-index: 1;
    position: relative;
    top: 880px;
    left: 160px;
    font-family: Gadugi Bold;

    font-size: 25px;
    color: #dddddd;
}

body {
    background-color: #ffffff;
    color: #000;
    font-family: var(--font);
    font-size: var(--size);
    line-height: 110%;
    text-align: center;
    margin: 0;
    padding: 0;
    animation: fadeEffect 0.5s;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.bg {
    background-size: 100% 100%;
    background-image: url("graphics/lohrebg.jpg");
    background-attachment: relative;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: -999999999999999;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#wrapper {
    position: relative;
    max-width: 100%;
    width: 1100px;
    top: 220px;
    margin: auto;
    animation: fadeEffect 0.5s;
}

.lohrelogo {
    position: relative;
    bottom: 180px;
    width: 100%;
    height: auto;
}
.lohrephoto {
    width: 52%;
    z-index: 2;
    position: relative;
    top: -290px;
    left: 870px;
}

.esrblogo {
    z-index: 1;
    position: absolute;
    top: 400px;
    left: 1200px;
}
.lohremenu {
    z-index: 1;
    position: relative;
    left: -210px;
    bottom: 80px;
}

.musicbutton {
    z-index: 2;
    position: absolute;
    top: 50px;
    background-image: url("graphics/buttons/off_music.png");
    display: block;
    width: 420px;
    height: 170px;
    scale: 80%;
}
.musicbutton:hover {
    background-image: url("graphics/buttons/off_music.png");
 
}

.gamesbutton {
    z-index: 2;
    position: absolute;
    top: 315px;
    left: -20px;
    background-image: url("graphics/buttons/off_games.png");
    display: block;
    width: 530px;
    height: 85px;
    scale: 80%;
}
.gamesbutton:hover {
    background-image: url("graphics/buttons/off_games.png");
    width: 530px;
    height: 85px;
    scale: 80%;
}

.moviesbutton {
    z-index: 2;
    position: absolute;
    top: 180px;
    left: -8px;
    background-image: url("graphics/buttons/off_movies.png");
    display: block;
    width: 500px;
    height: 170px;
    scale: 80%;
}
.moviesbutton:hover {
    background-image: url("graphics/buttons/off_movies.png");
    width: 500px;
    height: 170px;
    scale: 80%;
}

.artbutton {
    z-index: 2;
    position: absolute;
    top: 368px;
    left: 10px;
    background-image: url("graphics/buttons/not_art.png");
    display: block;
    width: 330px;
    height: 170px;
    scale: 80%;
}
.artbutton:hover {
    background-image: url("graphics/buttons/yes_art.png");
    width: 330px;
    height: 170px;
    scale: 80%;
}

@keyframes moveItTop {
    from {
        background-position: top left;
    }
    to {
        background-position: top right;
    }
}

@keyframes moveItBottom {
    from {
        background-position: bottom right;
    }
    to {
        background-position: bottom left;
    }
}

.lines {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 999999999999999999999999999999999999999999999999999999999999;
    opacity: 0.12;
}

.lines:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.5) 51%);
    background-size: 100% 4px;
    will-change: background, background-size;
    animation: scanlines 0.2s linear infinite;
}

@keyframes scanlines {
    from {
        background: linear-gradient(to bottom, transparent 10%, rgba(0, 0, 0, 0.5) 51%);
        background-size: 100% 4px;
    }

    to {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 50%, transparent 51%);
        background-size: 100% 4px;
    }
}