@font-face {
    font-family: elegist;
    src: url(assets/fonts/a46adb0e926a9e2169901deb754e599b.otf);
  }
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body
{
    overflow-x: hidden;
    font-family: 'Abril Fatface', cursive;
    --main-color: #f2f2f2;

}
.webgl
{
    position: fixed;
    top: 0;
    left: 0;
    outline: none;
    z-index: -1 !important;
}
.htmlContent {
    font-family: elegist, sans-serif;
    color: var(--main-color);
}
.heroPage {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;

}
.heading {
    font-size: 20vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: normal;
}
/************************************************ Navbar ****************************************************/


nav {
    width: 100vw;
    height: 15%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  nav .navLeft,
  nav .navRight {
    width: 44%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  nav .navLink {
    font-weight: normal;
    margin: 0 15px;
    cursor: pointer;
    color: var(--main-color);
    text-decoration: none;
    letter-spacing: 0.1rem;
    position: relative;
  }

  
  nav .navLine {
    display: block;
    width: 90%;
    height: 2px;
    background-color: var(--main-color);
  }
  nav .logo {
    width: 45px;
    height: 70%;
    background-image: url(assets/images/83ded7b31c0a1ebca65c5e72f23c2bed.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 20px;
  }

/************************************************ Navbar ****************************************************/

.socialMedia {
    position: absolute;
    left: 4%;
    bottom: 10%;
    list-style: none;
}
.socialMedia li {
    margin: 20px 0;
}
.socialMedia li a {
    text-decoration: none;
    color: var(--main-color);
    position: relative;
}

/************************************************ General ****************************************************/

a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--main-color);
    bottom: -4px;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .2s ease-in-out;
  }
  a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
  }


/************************************************ Media Query ****************************************************/
@media screen and (max-width: 600px) {
    .heading {
        font-size: 28vw;
    }
    
.socialMedia {
  left: 6%;
  bottom: 6%;
}
}

/*# sourceMappingURL=main.css.map*/