@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 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10% 5px 0;
    background-color: rgb(193, 33, 33);
}
header nav a {
    font-family: LethalFont;
    font-size: 40px;
    color: black;
    text-decoration: none;
}
.lethallogo {
    cursor: pointer;
    width: 160px;
    height: 65px;
    padding: 0;
    margin-left: 2%;
    padding-left: 1em;
}
.navigation__bar__links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}
.navigation__bar__links li + li {
    border-left: 5px solid black;
    padding-left: 20px;
}
.navigation__bar__links a:hover {
    color: rgb(193, 33, 33);
    background-color: black;
}

/* Main Page */
.video__wrapper{
    position: relative;
    width: 100%;
}
.video__main{
    display: block;
    width: 100%;
    opacity: 0.6;
}
.LethalLogo__main{
    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;
}

/* Intro */
#intro{
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#website {
    display: none;
    min-height: 100vh;
    background-color: black;
}
#intro video {
      width: 100%;
      height: 100%;
    }

