/* Handwritten with <3. Copyright 2024 - ShowEngineering - All Rights Reserved. */

:root{
    --se-background: #000;
    --se-foreground: #fff;
}

nav{
    position: relative;
    display:flex;
    box-sizing: border-box;
    padding: 24px;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    width: 100%;
    font-size: 20px;
}

nav>a{
    text-decoration: none;
    color:inherit;
    transition: 0.3s;
}

.nav-link:hover{
    color:#aaa;
}

.nav-logo{
    height: 48px;
    width: auto;
    transition: 0.3s;
}

.nav-logo:hover{
    opacity: 0.5;
}
body{
    background-color: var(--se-background);
    color: var(--se-foreground);
    font-family: kanit;
    max-width: 100%;
    overflow-x:hidden;
}

.content-overlay{
    width: 100dvw;
    min-height: 100dvh;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    opacity: 0.5;
}
header{
    z-index: -1;
}
.header-text {
    position: absolute;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    transform: translateY(-5rem);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .header-text h1 {
    font-weight: 400;
    font-size: 2rem;
    text-transform: uppercase;
    line-height: 1;
  }
  .header-text small {
    margin-top: 0.5rem;
    opacity: 0;
    display: block;
    font-weight: 400;
    font-size: 1.25rem;
    transition: 1s;
  }
  .header-text span {
    opacity: 0;
    font-weight: 400;
    font-size: 2rem;
    transition: 1s;
  }
  .description {
    position: relative;
    top: 100vh;
    left: 0;
    right: 0;
    margin-left: -2vw;
    margin-right: -2vw;
    color: var(--se-background);
    background-color: #F0F0F0;
    padding: 2rem;
  }
  .description p {
    max-width: 40rem;
    margin-inline: auto;
    line-height: 1.6;
  }
  .description h1{
    max-width: 100rem;
    margin-inline: auto;
    line-height: 1.6;
}
footer{
    position: relative;
    top: 100vh;
    margin-left: -2vw;
    max-width: 100vw;
    color: var(--se-foreground);
    background-color: #000;
    padding: 2rem;
    
}

footer p{
    max-width: 40rem;
    margin-inline: auto;
    line-height: 1.6;
}
footer h1, h2{
    max-width: 101rem;
    margin-inline: auto;
    line-height: 1.6;
}


/* Fonts */
@font-face {
    font-family: kanit;
    src: url(/assets/fonts/Kanit-Regular.ttf);
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: kanit;
    src: url(/assets/fonts/Kanit-Bold.ttf);
    font-style: normal;
    font-weight: bold;
}

@font-face {
    font-family: kanit;
    src: url(/assets/fonts/Kanit-Italic.ttf);
    font-style: italic;
    font-weight: normal;
}

@font-face {
    font-family: kanit;
    src: url(/assets/fonts/Kanit-BoldItalic.ttf);
    font-style: italic;
    font-weight: bold;
}



