@font-face {
    font-family:'LethalFont';
    src: url('../../folder/3270-Regular.ttf') format('truetype');
}

body{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: black;
    overflow:hidden;
}
header nav ul li a{
    font-family: LethalFont;
    font-size: 40px;
    color: black;
    text-decoration: none;
}

header{
    display: flex;
    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;
}
.video-wrapper{
    position: relative;
    width: 100%;
}
.videomain{
    display: block;
    width: 100%;
    opacity: 0.6;
}
.LethalLogomain{
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    pointer-events: none;
    max-width: 55%;
    width: auto;
    height: 35%;
}

.lethal_menu_text{
    position: absolute;
    display:block;
    text-align: left;
    top: 43%;
    list-style: none;

}
.lethal_menu_text a{
    font-family: LethalFont;
    text-decoration: none;
    color: rgb(193, 33, 33);
    font-size: 3em;
    word-spacing: 1em;
    line-height: 1.5em;
    padding-right: 200px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.lethal_menu_text a:hover{
    background-color: rgb(193, 33, 33);
    color: black;
}