@import url("https://use.typekit.net/lqr6bfw.css");

* {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  color: white;
  font-family: "montserrat", sans-serif;
  font-weight: 400;
  min-height: 100%;
}

.logoAnchor {
  position: relative;
}

.bg {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(-45deg, #110024, #021929, #150027, #1e0027);
  background-size: 400% 400%;
  animation: gradientBG 15s ease-in-out infinite;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.homepageName {
  font-family: rift-soft, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 10px;
}

.homepageHeader {
  font-weight: 400;
  font-size: 3.5rem;
  letter-spacing: 15px;
}

.homeTextContainer h1 {
  text-align: center;

  background: linear-gradient(
    to right,
    rgb(255, 81, 0) 20%,
    rgb(255, 0, 170) 40%,
    rgb(89, 0, 255) 60%,
    rgb(255, 81, 0) 80%
  );
  background-size: 200% auto;

  color: rgb(255, 255, 255);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: textGradient 4s linear infinite;
}

@keyframes textGradient {
  to {
    background-position: 200% center;
  }
}

.homeLogo {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  padding: 20px;
  z-index: 999999;
}

.homeTextContainer {
  text-align: center;
}

.navLinks {
  display: flex;
  justify-content: space-around;
  margin: 50px 10%;
}

.navLinks a {
  font-size: 1.3rem;
  background-size: 300% 100%;
  text-decoration: none;
  color: white;
  border-radius: 20px;
  padding: 12px 30px;
}

.navLinks a:hover {
  background-position: 100% 0;
  transition: all 0.5s ease-in-out;
}

.navLinks a:focus {
  outline: none;
}

.navLinks a {
  background-image: linear-gradient(to right, #ff4800, #ff00f2, #4c00ff);
  box-shadow: 0 2px 5px 0 rgba(136, 9, 62, 0.75);
}

.otherProjectLinks {
  padding: 10px 20px;
  position: relative;
  display: flex;
  justify-content: space-between;
}

/* --------------------------------------- */

video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

.projectHeader {
  position: relative;
  height: 100vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.subtitle {
  font-size: 3.5rem;
}

.filter {
  background: rgba(0, 0, 0, 0.66);
}

.projectBody {
  color: white;
  position: relative;
  display: flex;
  justify-content: space-around;
  min-height: calc(100vh - 150px);
  padding: 75px 0 75px 0;
}

.projectBody p {
  max-width: 600px;
  margin: 1rem auto;
}

.projectInfo {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.projectInfo p {
  font-size: 1.5rem;
  line-height: 1.5;
}

img {
  width: 100%;
}

.projectGallery {
  width: 400px;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
}

.projectGallery img {
  padding-bottom: 15px;
}
.projectGallery:last-child {
  padding-bottom: 0px;
}

/* --------------------------------------------------------- */

.psaTitle {
  font-size: 4rem;
  color: #d3adff;
  margin-bottom: 15px;
}

.countDownTitle {
  font-family: pinecone-mvb, sans-serif;
  color: #19ddff;
  -webkit-text-stroke: 1px white;
  font-size: 7rem;
  margin-bottom: 15px;
}

.kinTypeTitle {
  font-size: 6rem;
  letter-spacing: 3px;
  color: rgb(173, 2, 2);
  margin-bottom: 15px;
}

.titleSeqTitle {
  font-size: 7rem;
  font-family: fleisch-wolf, sans-serif;
  color: #201c19;
  letter-spacing: 2px;
  font-weight: 400;
  margin-bottom: 15px;
}

.projectLinks {
  display: flex;
  flex-direction: column;
}

.projectLink {
  color: white;
  font-size: 2rem;
}

.otherProjectLinks a {
  text-decoration: none;
  color: white;
  font-size: 2rem;
}

.otherProjectLinks a:hover {
  background: linear-gradient(
    to right,
    rgb(255, 81, 0) 20%,
    rgb(255, 0, 170) 40%,
    rgb(89, 0, 255) 60%,
    rgb(255, 81, 0) 80%
  );
  background-size: 200% auto;

  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------------------------------------- */

.arrow {
  position: absolute;
  border-bottom: none;
  height: 100px;
  width: 100px;
  bottom: 0;
}

.arrow:hover {
  border-bottom: none;
}

svg {
  fill: none;
  stroke: rgb(255, 255, 255);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5px;
  animation: bounce 1.5s infinite 1s;
  transition: all 0.3s;
}

@keyframes bounce {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0px);
  }
}
