/* FONT */

html::-webkit-scrollbar {
    display: none;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
      scroll-behavior: auto!important;
    }
  }
  

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    font-family: 'Karla', sans-serif;
    font-size: 1vw;
}

h1,h2,h3,h4{
    margin: 0;
}

.navbar {
    height: fit-content;
    max-width: 100vw;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-item, .footer-item{
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color .35s ease-in-out;
}

.next:hover{
    text-decoration: none;
    color: #a5e15f;
}

.menu-item:hover{
    color: #a5e15f!important;
}

.footer-item:hover{
    color: #a5e15f!important;
}

@media only screen and (max-width: 1024px) {
    html {
        font-size: 1vw
    }
    .lead, .info, .menu-item, .footer-item{
        font-size: 12px
    }
    .display-6{
        font-size: 21px
    }
}

@media only screen and (max-width: 575px) {
    .lead {
        width: 90%;
    }
}

@media (pointer:coarse) {
    .circle {
        display: none;
    }
}

::selection {
    background-color: #a5e15f;
    color: #000;
}

.split-outer {
    overflow: hidden;
}

.split-inner {
    display: inline-block;
}

/* FONT */

/* CURSOR */

.circle {
    position: fixed;
    background-color: #a5e15f;
    width: 20px;
    height: 20px;
    left: -10px;
    top: -10px;
    border-radius: 100%;
    z-index: 1;
    user-select: none;
    pointer-events: none;
}

/* BODY */

body{
    background-color: #000;
}

.hero{
    height: 100vh;
}

.intro{
    z-index: 10;
}

.display-1{
    color: #fff;
    font-size: 10rem
}

video{
    line-height: 0!important;
    display: block;
}

.main video{
    width: 100%;
    max-width: 360px;
    position: absolute;
    top: 50vh;
    left: 50vw;
    transform: translate(-50%, -50%);
}


.main img{
    width: 100%;
    max-width: 360px;
    position: absolute;
    top: 50vh;
    left: 50vw;
    transform: translate(-50%, -50%);
}


.project {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    background-color: #a5e15f;
  }
  
  .project img {
    object-fit: cover;
    transform-origin: left;
  }

  .project video {
    transform-origin: left;
  }
  
  .reveal {
    visibility: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

/* BODY */

/* CONTENT */

.float-right{
    float: right;
}

.text-dark {
    color: #000;
}

.text-muted {
    color: #7f7f7f!important;
}

.text-green {
    color: #a5e15f;
}


.content{
    background-color: #fff;
}

/* FOOTER */

#footer{
    height: 100vh;
}

.footer{
    height: fit-content;
    max-width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer span{
    color: #7f7f7f
}

.next{
    text-decoration: none;
    color: #000;
    transition: color .5s ease-in-out;
}

.next:hover{
    text-decoration: none;
    color: #a5e15f;
}

.mail {
    color: #a5e15f;
    transition: color .35s ease-in-out;
    text-decoration: none;
}

.mail:hover{
    text-decoration: none;
    color: #fff;
}


/* FOOTER */
