@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@font-face {
  font-family: PatrickHand-Regular;
  src: url(./assets/fonts/PatrickHand-Regular.ttf);
}
html {
  color: #3d3d3d;
  font-family: "Inter", sans-serif;
}

html,
body {
  overflow: hidden;
  margin: 0;
  width: 100%;
  height: 100%;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
}

section.overlay {
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.overlay #about {
  display: none;
}
section.overlay #contact {
  display: none;
}
section.overlay .container {
  position: relative;
  border-radius: 20px;
  padding: 20px 40px;
  background-color: white;
  max-width: 500px;
  width: 100%;
}
section.overlay .container div.close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
section.overlay .container div.close svg {
  fill: #3d3d3d;
}
section.overlay .container div.close:hover {
  opacity: 0.7;
}
section.overlay .container h2 {
  font-family: "PatrickHand-Regular", sans-serif;
  font-size: 40px;
  margin-block-end: 0;
}
section.overlay .container ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  margin-block-start: 1em;
}
section.overlay .container ul svg {
  width: 30px;
  height: 100%;
  transition: 0.2s ease-in-out;
  fill: #3d3d3d;
}
section.overlay .container ul svg:hover {
  opacity: 0.7;
  cursor: pointer;
}
section.overlay .container button {
  background-color: #3d3d3d;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
section.overlay .container button:hover {
  background-color: #2c2c2c;
}
section.overlay .container .wrapper {
  margin-block-start: 1em;
  display: flex;
  gap: 2em;
}
section.overlay .container .wrapper img {
  display: block;
  max-width: 100px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
section.overlay .container .wrapper div p:first-child {
  margin-block-start: 0;
}

.loading-screen {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(assets/bg.webp);
  opacity: 1;
  transition: opacity 1s;
  --loader-size: 70px;
}
@media screen and (min-width: 756px) {
  .loading-screen {
    --loader-size: 80px;
  }
}
@media screen and (min-width: 960px) {
  .loading-screen {
    --loader-size: 100px;
  }
}
@media screen and (min-width: 1160px) {
  .loading-screen {
    --loader-size: 120px;
  }
}
.loading-screen .canister,
.loading-screen .film {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(-10%, -50%);
}
@media screen and (min-width: 756px) {
  .loading-screen .canister,
  .loading-screen .film {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.loading-screen .canister img {
  height: calc(var(--loader-size));
  width: auto;
}
.loading-screen .film {
  z-index: -1;
}
.loading-screen .film img {
  width: auto;
  margin-top: 10px;
  margin-left: -100%;
  height: calc(var(--loader-size) / 1.276);
}
.loading-screen .film .wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(0%, -50%);
  overflow: hidden;
}

.navigation {
  z-index: 3;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 0);
}
.navigation nav {
  border: 1px solid #e3e3e3;
  background-color: white;
  border-radius: 9999px;
  height: -moz-fit-content;
  height: fit-content;
}
.navigation nav ul {
  list-style: none;
  display: inline-flex;
  padding-inline-start: unset;
  padding: 0.25rem;
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  position: relative;
  z-index: 5;
}
.navigation nav ul .hover-element {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: #e3e3e3;
  border-radius: 9999px;
  position: absolute;
  z-index: -1;
  transition: all 0.1s ease-in-out;
}
.navigation nav ul li {
  border-radius: 9999px;
  margin: 0;
  display: inline-block;
}
.navigation nav ul li a {
  z-index: 1;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  display: block;
  cursor: pointer;
}

#progress-bar-container {
  display: none;
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 20px;
  background-color: #ccc;
  border-radius: 10px;
  overflow: hidden;
  z-index: 2;
}

#progress-bar {
  width: 0;
  height: 100%;
  background-color: #93a9e2;
  transition: width 0.1s;
}/*# sourceMappingURL=style.css.map */