* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --small: 12px;
    --large: 24px;
    --pad: 10px;
}

@font-face {
    font-family: Inter;
    src: url(Inter-Regular.woff);
}

/* ### - A - ### */
a {
    color: black;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.content a {
    color: blue;
}
article {
    background-color: #ffffff;
    width: 100vw;
    height: 100vh;
    transform: translateX(100vw);
    transition: 0.5s;
    display: none;
    grid-template-columns: repeat(12, 1fr);
    overflow: hidden;
    position: fixed;
    top: 0;
    padding-top: 50px;
}
#event article {
    display: grid;
    transform: translateX(0vw);
}
article .back-arrow {
    grid-column: 1/2;
    transform: rotate(180deg);
    position: sticky;
    top: 10px;
    cursor: pointer;
    margin: var(--pad);
    margin-top: 15px;
}

/* ### - B - ### */
body {
    font-family: Inter;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
    height: 100vh;
    width: 100%;        
}
/* ### - C - ### */
.c-1-13 {
    grid-column: 1/13;
}
.content p {
    font-size: var(--small);
}
.content h1, .content h2, .content h3 {
    font-size: var(--large);
}
#default .content h2 {
    font-size: 20px;

}
#default .content h3 {
    font-size: 16px;
}
.content ul {
    margin-left: var(--small);
    margin-bottom: var(--small);
    font-size: var(--small);
}
.content li {
    margin-bottom: 5px;
}
article .content,
section .content {
    grid-column: 2/13;
    display: grid;
    grid-row-gap: var(--pad);    
    grid-auto-rows: max-content;
    height: 100%;
    overflow-y: auto;
    padding: var(--pad);   
    padding-bottom: 100px;     
    scrollbar-width: none;
}
article .content::-webkit-scrollbar,
section .content::-webkit-scrollbar {
    display: none;
}
.content .gallery-photo {
    width: 100%;
    display: block;
}
.content video {
    width: 100%;
}
.content .logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: var(--pad);
}
.content .gallery-logo {
    width: 100%;
    display: block;
}
/* ### - D - ### */
/* ### - E - ### */
/* ### - F - ### */
/* ### - G - ### */
/* ### - H - ### */
html {    
    scrollbar-width: none;
}
html::-webkit-scrollbar {
    display: none;
}
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2;
    background-color: white;
    padding: var(--pad);
    font-size: var(--large);
    display: flex;
    justify-content: space-between;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}
/* ### - I - ### */
.intro {
    grid-column: 1/2;
    grid-row: 2/4;
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    position: relative;
    z-index: -1;
}
.icon {
    width: 20px;
}
.idea {
    grid-column: 1/13;
}
/* ### - J - ### */
/* ### - K - ### */
/* ### - L - ### */
.large {font-size: var(--large);}
/* ### - M - ### */
.menu {
    cursor: pointer;
}
main {
    background-color: white;
    grid-column: 1/2;
    grid-row: 2/3;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: max-content max-content max-content;
    padding: var(--pad);
    grid-row-gap: var(--pad);
    padding-top: 50px;
}
/* ### - N - ### */
nav {
    position: fixed;
    top: 0;
    z-index: 3;
    width: 100%;
    background-color: white;
    padding: var(--pad);
    display: flex;
    justify-content: space-between;
    transform: translateY(-50px);
    transition: 0.1s;
}
nav ul {
    display: flex;
    width: 85%;
    gap: 20px;
}
nav li {
    list-style-type: none;
}
nav .close {
    display: flex;
    cursor: pointer;
}
/* ### - O - ### */
/* ### - P - ### */
/* ### - Q - ### */
/* ### - R - ### */
/* ### - S - ### */
.small {font-size: var(--small);}
section {
    background-color: white;
    width: 100vw;
    height: 100vh;
    transition: 0.2s;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    overflow: hidden;
    position: fixed;
    top: 0;
    padding-top: 50px;
}
/* ### - T - ### */
.team {
    grid-column: 2/13;
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-auto-rows: max-content auto;
}
.team a {
    cursor: pointer;
}
.team-arrow {
    grid-column: 10/12;
    height: var(--large);
    transition: 0.2s;
    grid-row-start: 1;
    justify-self: end;
}
.team-link {
    grid-column: 1/12;
    grid-row-start: 1;
}
.team ul {
    grid-column: 2/12;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 20px;
    list-style-type: none;
    overflow: hidden;
}
.team ul li {
    grid-column: span 2;
    transform: translateY(10px);
    opacity: 0;
    transition: 0.1s;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.team ul li div {
    background-color: #cccccc;
    aspect-ratio: 5/3;
    overflow: hidden;
}
.team ul li .thumbnail {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    pointer-events: none;
}
.team ul li.fade {
    transform: translateY(0);
    opacity: 1;
    transition: 0.1s;
}
/* ### - U - ### */
/* ### - V - ### */
/* ### - W - ### */
/* ### - X - ### */
/* ### - Y - ### */
/* ### - Z - ### */

@media (min-width: 750px) {
    :root {
        --small: 16px;
        --large: 32px;
        --pad: 15px;
    }
    #default .content h2 {
        font-size: 26px;
    }
    #default .content h3 {
        font-size: 20px;
    }
    .icon {
        width: 30px;
    }
    main {
        padding-top: 70px;
    }
    nav {
        transform: translateY(-80px);
    }
}

@media (min-width: 1080px) {
    .team {
        grid-column: 3/13;
        grid-template-columns: repeat(10, 1fr);
        grid-row-gap: 0;
    }
    .team ul {
        grid-gap: var(--pad);
        grid-column: 3/12;
    }
    .team ul li {
        grid-column: span 1;
        margin-bottom: var(--pad);
    }
    article .content,
    section .content {
        grid-column: 3/13;
        grid-template-columns: 2fr 8fr;
    }
    article h1:first-of-type,
    section h1:first-of-type {
        grid-column: 1/-1;
    }
    article .artists {
        grid-column: 1/-1;
    }
    .gallery-photo {
        grid-column: 2/3; 
    }
    .content>* {
        grid-column: 2/3; 
    }
    article .logos {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (min-width: 1350px) {
    :root {
        --small: 20px;
        --large: 40px;
        --pad: 15px;
    }
    #default .content h2 {
        font-size: 32px;
    }
    #default .content h3 {
        font-size: 26px;
    }
    .icon {
        width: 30px;
    }
    nav {
        transform: translateY(-80px);
    }
    article,
    section,
    main {
        padding-top: 80px;
    }
}

@media (min-width: 1650px) {
    .idea {
        grid-column: 1/3;
    }
    main {
        grid-template-rows: max-content max-content;
    }
    .artists p {
        font-size: var(--large);
    }
}

@media (min-width: 2000px) {
    :root {
        --small: 24px;
        --large: 48px;
        --pad: 20px;
    }
    #default .content h2 {
        font-size: 36px;
    }
    #default .content h3 {
        font-size: 26px;
    }
    .icon {
        width: 40px;
    }
    main {
        padding-top: 100px;
    }
    article,
    section {
        padding-top: 80px;
    }
}