@font-face {
    font-family: 'Lunchtype22';
    src: url('/assets/fonts/Lunchtype22-Light.ttf') format('truetype'), url('/assets/fonts/Lunchtype22-Light.woff') format('woff'), ;
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Lunchtype22';
    src: url('/assets/fonts/Lunchtype22-Medium.ttf') format('truetype'), url('/assets/fonts/Lunchtype22-Medium.woff') format('woff'), ;
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Lunchtype22';
    src: url('/assets/fonts/Lunchtype22-Regular.ttf') format('truetype'), url('/assets/Lunchtype22-Regular.woff') format('woff'), ;
    font-weight: 400;
    font-style: normal;
}

* {
    font-family: 'Lunchtype22';
    list-style: none;
    text-decoration: none;
    padding: 0;
    margin: 0;
    scrollbar-width: none;
    color: black;
}

body {
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    min-height: 100vh;
}

body>div {
    display: flex;
    height: 100%;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

video {
    position: absolute;
    z-index: 0;
    width: 75%;
    height: auto;
    pointer-events: none;
    border: none;
    clip-path: inset(2px 2px 2px 2px);
}

span,
ul {
    opacity: 0;
    transition: all 1s;
}

span {
    position: relative;
    z-index: 1;
    color: black;
    font-size: 16px;
    top: -43%;
    text-align: left;
    margin-top: 1%;
}

ul {
    width: 40%;
    z-index: 1;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    position: relative;
    top: 43%;
    margin-bottom: 1%;
}

ul a {
    text-decoration: none;
    opacity: 0.5;
}

a:hover {
    opacity: 1;
}

@media only screen and (min-width: 880px) and (max-width: 1330px) {
    ul {
        width: 60%;
    }
}

@media only screen and (max-width: 1111px) {
    video {
        height: 75%;
        width: auto;
    }
}

@media only screen and (max-width: 879px) {
    ul {
        flex-flow: column;
        align-items: center;
    }
}