:root {
  --main-color: white;
  --accent-color: black;
}

body {
  font-family: "Inter", sans-serif;

  overflow: hidden;
  width: 100vw;
  height: 100vh;
  margin: 0;
}

#loading {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-color: var(--main-color);
  z-index: 2;
  transition: all 0.9s ease-in-out;
  pointer-events: none;
}

#show {
  font-family: "Inter", sans-serif;
  background-color: var(--accent-color);
  -webkit-mask-image: url(circle.png);
  mask-image: url(circle.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 10px 10px;
  mask-size: 100px 100px;
  width: 100vw;
  height: 100vh;
  position: absolute;
  z-index: 1;
  mask-position: 150vw 150vh;
}

#hide {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-color: var(--main-color);
}

#scroll-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 5vh;

  transition: opacity 1.5s ease-in-out;
}

#scroll-container Lord-icon {
  transform: rotate(-90deg);
}

#scroll-container p {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-color);
}

#title-container {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: column;
  height: 45vh;
  width: 100vw;
}

#title {
  font-size: 70px;
  font-weight: 200;
  margin: 0;
  text-align: center;
}

#nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 500px;
}

#nav a {
}

#nav Lord-icon:nth-child(3) {
  transform: rotate(180deg);
}

a {
  text-decoration: none;
  color: var(--main-color);
  font-weight: 700;
}

a:hover {
  cursor: pointer;
}

#links {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  height: 40vh;
}

#links img {
  width: 50px;
}

#bg-scroll-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 5vh;
  opacity: 0;

  transition: opacity 1.5s ease-in-out;
}

#bg-scroll-container Lord-icon {
  transform: rotate(-90deg);
}

#bg-scroll-container p {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-color);
}

#bg-title-container {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: column;
  height: 45vh;
  width: 100vw;
  color: var(--main-color);
}

#bg-title {
  font-size: 70px;
  font-weight: 200;
  margin: 0;
  text-align: center;
}

#bg-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 500px;
}

#bg-nav a {
}

#show a {
  text-decoration: none;
  color: var(--main-color);
  font-weight: 700;
}

#bg-nav Lord-icon {
  -webkit-filter: invert(100%);
  filter: invert(100%);
}

#bg-nav Lord-icon:nth-child(3) {
  transform: rotate(180deg);
}

#bg-links {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  height: 40vh;
}

#bg-links img {
  width: 50px;
  -webkit-filter: invert(100%);
  filter: invert(100%);
}

@media (pointer: none), (pointer: coarse) {
  .projects {
    color: var(--accent-color);
  }
}
