@charset "UTF-8";

@font-face {
    font-family: "NewEdge6666";
    src: url("../font/NewEdge6666-LightRounded.woff") format("woff");
}

* {
    margin: 0px;
    padding: 0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    overscroll-behavior: none;
    touch-action: none;
}

html, body {
    height: 100vh;
    width: 100vw;
    font-family: "NewEdge6666";
    cursor: url("../cursor/cursor.svg"), default;
    overflow: hidden;
}

.nav-link {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    z-index: 1000;
    mix-blend-mode: difference;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: black;
    font-family: sans-serif;
    transition: transform 0.3s ease;
    cursor: url("../cursor/pointer.svg"), pointer;
  }

  .nav-link:hover {
    transform: scale(1.12);
  }

  /* Loading */
  
  div.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 9999;
    transition: opacity 1.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

div.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

div.loading img {
    position: absolute;
    width: 100%;
    height: 100%;
}

.logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    mix-blend-mode: overlay;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.logo.hidden {
    opacity: 0;
    pointer-events: none;
}

.logo img {
    width: 100%;
}