:root{
  --White: white; 
  --Black: #232323;
}

* {
    border: none;

}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body{
    scrollbar-width: none; 
    -ms-overflow-style: none;
}

body::-webkit-scrollbar{
    display: none;
}


@font-face {
    font-family: "Anzeigen Grotesk T";
    src: 
        url("../fonts/Anzeigen Grotesk T Regular.woff")  format("woff");
}


img {
    display: block;
    max-width: 100%;
}




h1, h2, p{
    font-family: "Anzeigen Grotesk T";
    font-size: 180px;
    font-weight: 500;
    line-height: normal; 
    font-style: normal; 
    color: var(--White); 
    margin: 0px;
}

    h1, h2 {
        text-transform: uppercase; 
    }

        h1{
            font-size: 180px; 
            margin-bottom: 20px;
        }

        h2{
            font-size: 90px; 
            margin: 0;
        }
    
    p{
        font-size: 50px;
        margin: 0px;
        letter-spacing: 1px; 
    }

    .Footer p{
        font-size: 30px; 
        letter-spacing: 1px;    
    }

a{
    font-style: normal;
    text-decoration: none;
}

    a:hover {
        opacity: 0.5;
    }

body{
    background-color: var(--Black);
}

main{
   padding: 40px 405px 0px 145px; 
}

/* 370px */

.Menu{
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    margin-bottom: 200px;
}

.Footer{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 50px;
}

.Footer-Container{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 15%;
    flex-wrap: wrap;
}



.Scroll-Text-Container{
    position: fixed;
    background-color: var(--White);
    top: 0;
    left: 0;
    width: 110px;
    height: 100vh;

}


.Logo-and-Img-Sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 330px;
    height: 100vh;
    background-image: url("../images/static.gif");
    background-size: cover;
    background-position: -100px;
}

    .Logo-and-Img-Sidebar .slider-image {
        height: 100%;
        width: 100%;
        object-fit: cover;
        transition: opacity 1s ease-in-out;
        z-index: 4;
    }

    .Logo-and-Img-Sidebar img.hidden {
        opacity: 0;
    }

    .Logo-and-Img-Sidebar .background-image {
        height: 100%;
        width: 100%;
        object-fit: cover;
        z-index: 1;
    }


    .Video-Container{
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    .Video-Logo {
        width: 330px;
        height: 320px;
    }

