@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,300;1,100;1,500;1,800&display=swap);
* {
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: "Montserrat", sans-serif;
  color: white;
  background-color: black;
  overscroll-behavior-y: contain;
  height: 1200vh;
}

.body,
#wrapper {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
  margin: 0;
}

.body {
  z-index: 1;
}

#wrapper {
  z-index: 2;
}

.webgl {
  position: fixed;
  top: 0;
  left: 0;
  outline: none;
}

#overlay {
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  overscroll-behavior: none;
}
#overlay .exploreNav {
  position: fixed;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 220px;
}
#overlay .exploreNav .exploreNavInner {
  display: none;
  margin-left: 20px;
  animation: fadeIn 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
@media screen and (max-width: 768px) {
  #overlay .exploreNav .exploreNavInner {
    margin-left: 5px;
  }
}
#overlay .exploreNav .exploreNavInner #exploreNavLineProgress {
  position: relative;
  height: 10px;
  top: 14px;
  left: 16px;
  width: 2px;
  background: #ffffff;
  transform-origin: top center;
  transform: scaleY(0);
}
#overlay .exploreNav .exploreNavInner a {
  display: flex;
  flex-flow: row;
  height: 25px;
  margin-bottom: 35px;
}
#overlay .exploreNav .exploreNavInner a span {
  padding-left: 24px;
}
@media screen and (max-width: 768px) {
  #overlay .exploreNav .exploreNavInner a span {
    padding-left: 15px;
    font-size: 15px;
  }
}
#overlay .exploreNav .exploreNavInner a .exploreNavDiamond {
  position: relative;
  top: 3px;
  left: 10px;
}
#overlay .exploreNav .exploreNavInner a .exploreNavDiamond .outerDiamond {
  height: 10px;
  width: 10px;
  -webkit-clip-path: polygon(0 50%, 50% 0, 100% 50%, 50% 100%);
          clip-path: polygon(0 50%, 50% 0, 100% 50%, 50% 100%);
  background-color: white;
  border: 2px solid white;
}
#overlay .exploreNav .exploreNavInner a:hover {
  cursor: pointer;
}
#overlay .exploreNav .exploreNavInner a:hover span {
  color: yellow;
}
#overlay .exploreNav .exploreNavInner a:hover .outerDiamond {
  background-color: yellow;
  border: 2px solid yellow;
}
#overlay .musicIcon {
  height: 50px;
  display: flex;
  align-items: center;
  position: absolute;
  right: 10px;
  bottom: 10px;
  cursor: pointer;
  z-index: 10;
}
#overlay .musicIcon .bar {
  display: block;
  position: relative;
  background-color: white;
  color: white;
  height: 20%;
  width: 5px;
  border-radius: 50px;
  margin: 0 5px;
}
#overlay .container {
  width: 100%;
  height: 100%;
  position: absolute;
}
#overlay .container #content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#overlay .container #content .section {
  display: none;
  animation: fadeIn 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  height: 100%;
  width: 100%;
  position: relative;
  padding: auto;
}
#overlay .container #content .section .btn {
  margin: auto;
  padding: 10px 40px !important;
  color: white;
  background-color: transparent;
  border-radius: 5px;
  border: 2px solid white;
  cursor: pointer;
}
#overlay .container #content .section .center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#overlay .container #content .section h1 {
  font-weight: 900;
  font-size: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5em;
}
@media screen and (max-width: 768px) {
  #overlay .container #content .section h1 {
    font-size: 30px;
  }
}
#overlay .container #content .section p, #overlay .container #content .section input, #overlay .container #content .section textarea, #overlay .container #content .section button {
  padding: 20px 0;
  font-style: italic;
  font-weight: 100;
  font-size: 20px;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 768px) {
  #overlay .container #content .section p, #overlay .container #content .section input, #overlay .container #content .section textarea, #overlay .container #content .section button {
    font-size: 12px !important;
  }
}
#overlay .container #content .section p {
  text-align: center;
}
#overlay .container #content .section .arrow {
  border: solid white;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-45deg);
}
#overlay .container #content .section .projects {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
}
@media screen and (max-width: 768px) {
  #overlay .container #content .section .projects {
    width: 250px;
    height: 250px;
  }
}
#overlay .container #content .section .projects .project {
  display: block;
  height: 400px;
  width: 400px;
  opacity: 1;
  position: absolute;
  border-radius: 100%;
  overflow: hidden;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #overlay .container #content .section .projects .project {
    width: 250px;
    height: 250px;
  }
}
#overlay .container #content .section .projects .project img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
#overlay .container #content .section .projects .project .overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7); /* Black see-through */
  color: black;
  width: 100%;
  height: 100%;
  transition: 0.5s ease;
  opacity: 0;
  font-size: 20px;
  text-align: center;
}
#overlay .container #content .section .projects .project:hover img {
  transform: scale(1.1);
}
#overlay .container #content .section .projects .project:hover .overlay {
  opacity: 1;
}
#overlay .container #content .section form {
  width: 50%;
  margin: auto;
}
#overlay .container #content .section form .formGroup > input, #overlay .container #content .section form textarea {
  background-color: transparent;
  border-radius: 10px;
  border: 2px solid white;
  margin: 20px auto;
  outline-color: #4a0ac9;
  display: block;
  width: 100%;
  max-width: 500px;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: white;
  background-clip: padding-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media screen and (max-width: 768px) {
  #overlay .container #content .section form .formGroup > input, #overlay .container #content .section form textarea {
    width: 80%;
  }
}
#overlay .container #content .section .contactIcon > img {
  width: 75px;
  margin: 20px;
}
@media screen and (max-width: 768px) {
  #overlay .container #content .section .contactIcon > img {
    width: 50px;
  }
}

@keyframes musicAnim {
  50% {
    height: 20%;
  }
  100% {
    height: 100%;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale3d(0.75, 0.75, 1);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.75, 0.75, 1);
  }
}
@keyframes slideProjects {
  0% {
    left: 0;
  }
  100% {
    left: 100;
  }
}/*# sourceMappingURL=style.css.map */

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