@charset "UTF-8";

@font-face{
    font-family:"ABCMonumentGrotesk-Medium";
    src: url("../fonts/ABCMonumentGrotesk-Medium.woff2") format("woff2"), url("../fonts/ABCMonumentGrotesk-Medium.woff") format("woff");
}
*{
    margin:0;
	padding:0;
	list-style:none;
    box-sizing: border-box;
}
body{
    font-family: "ABCMonumentGrotesk-Medium";
    font-size: 12px;
    letter-spacing: 0.05em;
    background: #ffffff;
    color: #000000;
    line-height: 1.2;
    margin: 0;
    padding: 0px;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-font-smoothing: antialiased;
}
*::-webkit-scrollbar {
    display: none;
}
#detach-button-host {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
h1{
    font-size: unset;
    text-transform: uppercase;
    font-weight: unset;
}
h2{
    font-size: unset;
    font-weight: unset;
}
nav h2{
    display: inline;
}
a{
    text-decoration: none;
    color: #000000; 
}
@media (hover: hover) and (pointer: fine) {
    nav a:hover:not(section a), #project a:hover{
        color: #000000;
    }
}
img, video{
    display: block;
}
.loader{
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 2;
    background: #ffffff;
    animation: 0.5s ease-in-out forwards;
}
nav, main, footer{
    padding: 16px;
}
nav{
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1;
}
nav a, nav p{
    color: #dadada;
}
.nav{
    display: flex;
    justify-content: center;
}
label{
    cursor: pointer;
}
label p{
    display: inline;
}
input{
    display: none;
}
.nav-content{
    margin-top: 16px;
    visibility: hidden;
}
div:has(input:checked) .nav-content{
    visibility: visible;
}
nav p{
    display: inline;
}
section:not(#legal section){
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    justify-content: space-between;
    gap: 16px;
    margin-top: var(--nav-height);
    margin-bottom: 100px;
}
#legal section{
    margin-top: var(--nav-height);
}
#legal p:not(:first-child), #legal h2:not(:first-child){
    margin-top: 12px;
}
section a:not(#legal section a){
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
section a img{
    width: 100%;
}
footer div{
    text-align: center;
}
#project{
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100vh;
    height: var(--doc-height);
}
.embla{
  overflow: hidden;
  flex: 1;
}
.embla__container{
  display: flex;
  height: 100%;
  will-change: transform;
}
.embla__slide{
  height: 100%;
  width: auto;
  min-height: 0;
}
#project div{
    position: relative
}
#project a{
    position: absolute;
    left: 0;
    color: #dadada;
}
#project p{
    text-align: center;
}

@media only screen and (max-width: 1024px) {
    section:not(#legal section){
        grid-template-columns: repeat(3, 1fr);
    }
}
@media only screen and (max-width: 768px) {
    body{
        font-size: 10px;
    }
    nav, main, footer{
        padding: 10px;
    }
    section{
        gap: 10px;
    }
}
@keyframes fade-out {
  from {
    opacity: 1;
    visibility: visible;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}