/* Background and Layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: 'Karla';
  font-size: larger;
  margin-left: 20%;
  margin-right: 20%;
  height: 100vh;
}

#webGLApp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.custom-cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  border: 1px solid white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1000;
  transform: translate(-50%, -50%);
  will-change: transform;
  display: none;
}

body {
  cursor: none;
}

header {
    font-family: 'Lilita One';
    font-size: 40px;
    color: aliceblue;
    text-decoration: blue wavy underline;
    text-align: center;
    position: relative;
    z-index: 20;
}

h1 {
    font-family: 'Lilita One', 'VT323', 'Arial Narrow', Arial, sans-serif;
    color: #9193ff;
    font-size: 80px;
    margin-bottom: -2vh;
    padding-top: 10vh;
}

a.two {
    font-family: 'Lilita One', 'VT323', 'Arial Narrow', Arial, sans-serif;
    color: #9193ff;
    font-size: 80px;
    margin-bottom: -2vh;
    text-decoration: none;
}

a.two:hover {
    text-decoration:underline;
}

a.three {
  margin-top: -2vh;
  pointer-events: auto;
  cursor: pointer;
}

a.three:hover {
  filter: brightness(1.3) saturate(1.2);
}

.left {
    text-align: left;
    position: relative;
    z-index: 20;
}

.right {
    text-align: right;
    position: relative;
    z-index: 20;
}

/* .back {
    font-family: 'Lilita One', 'VT323', 'Arial Narrow', Arial, sans-serif;
    text-align: left;
    font-size: 50px;
    margin-top: -6vh;
    margin-left: -32%;
  } */
  #cursorCircle {
    width: 20px;
    height: 20px;
    background-color:#9193ff;
    opacity: 50%;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
    z-index: 9999;
    display: none;
  }

  .nav {
    font-family: 'Lilita One', 'VT323', 'Arial Narrow', Arial, sans-serif;
    text-align: left;
    font-size: 50px;
    margin: 8px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
  }
  a.one {
    color:aliceblue;
    text-decoration: none;
  }
  a.one:hover {
    color:#9193ff;
    font-style: italic;
    text-decoration: blue wavy underline;
  }