* {
  margin: 0;
  box-sizing: border-box;
  color: #fff;
}

body {
  width: 100%;
  height: 100vh;
  background-color: #000;
  background-image: radial-gradient(circle at top right, rgba(121, 68, 154, 0.13), transparent), radial-gradient(circle at 20% 80%, rgba(41, 196, 255, 0.13), transparent);
}

canvas {
  position: fixed;
  z-index: 0;
  width: 100vw;
  height: 100vh;
}

a {
  position: absolute;
  bottom: 2vmin;
  right: 2vmin;
  color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

a:hover {
  color: #fff;
}

main {
  width: 100vw;
  height: 100vh;
  padding: 160px;
  position: relative;
  z-index: 1;
}
main section {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

h1.logo {
  color: #fff;
  font-size: 96px;
  font-family: "Space Mono";
}

ul {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  padding: 0;
}
ul.nav-bar {
  position: absolute;
  gap: 1px;
  left: 160px;
  width: 160px;
}
ul.nav-bar li {
  padding: 8px 16px;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  background-color: #4a627c;
  cursor: pointer;
}
ul.nav-bar li .bg {
  position: absolute;
  background-color: #ffffff;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  transition: width ease-in 0.2s;
}
ul.nav-bar li h4 {
  font-size: 15px;
  z-index: 1;
  transition: color ease-in 0.2s;
  font-family: "Noto Sans";
}
ul.nav-bar li:hover .bg {
  width: 100%;
}
ul.nav-bar li:hover h4 {
  color: black;
}

footer {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 100%;
}
footer .line {
  height: 20px;
  width: 100%;
  background-color: #fff;
}
footer .line:nth-child(1) {
  background-color: #8C8279;
}
footer .line:nth-child(2) {
  background-color: #DFBFB1;
}
footer .line:nth-child(3) {
  background-color: #4A627C;
}

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