html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: "Source Code Pro";
    src: url("style/SourceCodePro-VariableFont_wght.ttf");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Source Code Pro";
    src: url("style/SourceCodePro-Italic-VariableFont_wght.ttf");
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

.main {
    display: flex;
    margin: 0;
    height: 100vh;
    width: 100vw;
    flex-direction: row;
    background: #FAF9F9;
    font-family: "Source Code Pro", monospace;
    font-optical-sizing: auto;
    font-weight: 400;

}

h1 {
    font-weight: 500;
    display: flex;
    justify-content: center;
}

.image {
    padding: 5vh;
    /* width: 60vw; */
}

video {
    /* padding: 5vh; */
    width: 60vw;
}

.text {
    /* margin-left: 20vw; */
    /* margin-right: 20vw; */
    text-align: start;
}

.banger {
    background: #bbc8b1;
    display: flex;
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 0.4rem 0;
    align-items: center;
}

.banger p {
    display: flex;
    font-size: 1.5vw;
    padding: 0 20vw;
    margin: 0.4rem 0;
    text-align: center;
    /* line-height: 1.2; */
}


.main::-webkit-scrollbar {
    display: none;
}

body,
html {
    height: 100%;
}


.sidebar {
    z-index: 100;
    width: clamp(60px, 5vw, 200px);
    height: 100vh;
    background-color: #1f1f1f;
    position: fixed;
    transition: width 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    /* overflow: hidden; */
}

.sidebar a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #FAF9F9;
    margin-top: 15px;
    padding: 2px;
    transition: background-color 0.5s ease, font-size 0.5s ease, padding-left 0.5s ease;
    position: relative;
}

.sidebar a:hover {
    background-color: #FAF9F9;
    color: #1f1f1f;
    padding-left: 30px;
}

.sidebar:hover {
    width: 50vw;
    font-size: clamp(2em, 4em, 5em);
}

.main_content {
    display: flex;
    margin-left: 60px;
    flex-direction: column;
    justify-items: center;
}

.video-container {
    /* display: flex; */
    /* position: relative; */
    /* justify-content: center; */
    margin: 0 auto;
    aspect-ratio: 16/9;
    width: 60vw;
    z-index: 1;
    padding-bottom: 5vh;
}

.video-container iframe {
    /* position: absolute; */
    inset: 0;
    width: 100%;
    height: 100%;
}