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;
    text-align: center;
}

a:link {
    color: #879B7D;
}

a:visited {
    color: #1f1f1f;
}

a:hover {
    color: #879B7D;
}

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



img {
    border: 1px solid #1f1f1f;
}

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

.text {
    margin-left: 20vw;
    margin-right: 20vw;
    text-align: center;
}

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

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

.banger-track {
    width: 100%;
    flex-direction: column;
    display: flex;
    border: 1px solid #1f1f1f;
    flex-wrap: nowrap;
}




.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;
    padding: 5px;
    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: clamp(60px, 5vw, 200px); 
    flex-direction: column; 
    justify-items: center; 
    /* justify-content: 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%;
}


.audioplayer {
    display: flex;
    justify-content: center;
}

audio {
    width: 50vw;
}


.bc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    padding-left: 25vw;
}

.gallery-collage {
    position: relative;
    width: min(90vw, 900px);
    height: min(70vh, 600px);
    margin: 2rem auto 4rem;
    padding: 1rem 0 2rem;
    overflow: visible;
}

.gallery-item {
    position: absolute;
    display: block;
    width: clamp(140px, 20vw, 240px);
    height: auto;
    object-fit: cover;
    padding: 0;
    border: 1px solid #1f1f1f;
    box-shadow: 0 12px 30px rgba(31, 31, 31, 0.16);
    background: #FAF9F9;
}

.gallery-item--one {
    top: 0;
    left: 8%;
    transform: rotate(-7deg);
    z-index: 1;
}

.gallery-item--two {
    top: 10%;
    right: 10%;
    transform: rotate(8deg);
    z-index: 2;
}

.gallery-item--three {
    top: 38%;
    left: 25%;
    transform: rotate(-4deg);
    z-index: 3;
}

.gallery-item--four {
    top: 34%;
    right: 24%;
    transform: rotate(6deg);
    z-index: 4;
    width: clamp(160px, 24vw, 280px);
}

@media (max-width: 768px) {
    .gallery-collage {
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        padding: 1rem 0 2rem;
    }

    .gallery-item {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        transform: none;
        width: min(70vw, 220px);
    }
}