@font-face {
    font-family: 'LethalFont';
    src: url('../../folder/3270-Regular.ttf') format('truetype');
}
html{
    scroll-behavior: smooth;
}
body{
    position: sticky;
    margin: 0;
    padding: 0;
    background-color: black;
}
body::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    background-image:url('../../video/moons/LethalMoonGif.gif');
    background-size: cover;
    opacity: 0.5;
    z-index: -1; 
}
header{
    position: sticky !important;
    top: 0;
     z-index: 4;

}
header nav ul li a{
    font-family: LethalFont;
    font-size: 40px;
    color: black;
    text-decoration: none;
}
header{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10% 5px 0;
    background-color: rgb(193, 33, 33);
}
.lethallogo{
    cursor: pointer;
    width: 160px;
    height: 65px;
    padding: 0;
    margin-left: 2%;
    padding-left: 1em;
}
.navigation_bar_links{
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
}
.navigation_bar_links a:hover{
    color: rgb(193, 33, 33);
    background-color: black;
}
.navigation_bar_links li{
    display: inline-block;
    vertical-align: middle;
}
.navigation_bar_links li + li{
    border-left: 5px solid black;
    padding-left: 20px;
    margin-left: 20px;
}
.navigation_bar_links li{
    border-left: 5px solid black;
    padding-left: 20px;
}


/* Lore page */
.lore__links{
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: black;
    position:relative;
    width: 450px;
    border: 2px solid rgb(193, 33, 33);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    clear: both;
}
.lore__links li a{
    display: block;
    text-decoration: none;
    font-family: LethalFont;
    color: white;
    padding: 8px 16px;
    font-size: 20px;
}
.lore__links li:hover{
    color: white;
    background-color: rgb(193, 33, 33);
}
.lore__title{
    font-family: LethalFont;
    color: white;
    font-size: 60px;
}
.lore__text{
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    width: 70%;
    line-height: 1.5em;
}
.lore__log{
    font-family: LethalFont;
    color:white;
}
.lore__image{
    width: 15%;
    height: auto;
    position: relative;
    float: right;
    margin: 0 7em 0 0;
    border: 3px solid rgb(193, 33, 33);
}
.lore__container{
    position: absolute;
    top: 300px;
    left: 10%;
    right: 10%;
    border: 2px solid rgb(193, 33, 33);
    padding: 20px 0px 1em 50px;
    background-color: rgba(10, 2, 2, 0.9);
}
.lore__log__container{
    border: 2px solid rgb(193, 33, 33);
    background-color: #1E221B;
    margin-right: 30px;
    padding-inline: 20px;

    color: #01FB01;
    font-family: LethalFont;
    font-size: 20px;
    word-spacing: 5px;
}

/* Dropdown */
.lore__dropdown{
    position: relative;
    color: #01FB01;
}
.lore__dropdown__img{
    display: none;
    position: absolute;
    max-width: 200px;
    z-index: 4;
    border: 2px solid rgb(193, 33, 33);
    top: 25px;
    left: 0;
    background-color: rgba(10, 2, 2, 0.95);
    padding:5px;
}
.lore__dropdown:hover .lore__dropdown__img {
    display: block;
}