.hero {
  height: 100dvh;
  width: 100vw;
  padding: 0;
  margin: 0;
}

.heroContent {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: none;
  color: var(--text);
  height: 100dvh;
}

.title {
  display: flex;
  flex-direction: column;
  position: relative;
}

.title {
  margin: 0;
  padding: none;
  font-size: 13rem;
  font-variant-caps: all-petite-caps;
  font-weight: 600;
}

.title span {
    --animation-time: 1.3s;
    position: relative;
    transform: translate(0, -12.5%);
    z-index: 2;
}

.title span:nth-child(odd) {
  text-align: left;
  align-self: flex-end;
  animation: normal var(--animation-time) ease-out intro;
}

.title span:nth-child(even) {
  text-align: right;
  align-self: flex-end;
  animation: normal var(--animation-time) ease-out intro1;
}

@keyframes intro {
  from {
    transform: translate(100%, -12.5%);
  }
  to {
    transform: translate(0, -12.5%);
  }
}

@keyframes intro1 {
  from {
    transform: translate(-200%, -12.5%);
  }
  to {
    transform: translate(0, -12.5%);
  }
}

.separator {
  display: block;
  height: 18rem;
  flex-grow: 1;
  z-index: 3;
}

.sep1 {
    border-image: linear-gradient(270deg, var(--accent) 0%, rgba(0, 0, 0, 0) 70%, rgba(0,0,0,0) 100%) 30;
    border-width: 2.5px;
    border-style: solid;
    border-left: none;
    background: linear-gradient(270deg, var(--bg) 0%, var(--bg) 60%,rgba(0,0,0,0) 100%);
}

.sep2 {
    border-image: linear-gradient(90deg, var(--accent) 0%, rgba(0, 0, 0, 0) 70%, rgba(0,0,0,0) 100%) 30;
    border-width: 2.5px;
    border-style: solid;
    border-right: none;
    background: linear-gradient(90deg, var(--bg) 0%, var(--bg) 60%,rgba(0,0,0,0) 100%);
}

.line {
  display: flex;
  align-items: flex-end;
}

.line1 {
  margin-left: 2rem;
}

.line2 {
  margin-right: 2r  ;
}


.heroButtonWrapper {
  display: flex;
  flex-direction: row;  
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}

.buttonContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
}

.heroButtonWrapper .buttonContainer button {
  width: 200px;
  height: 100px;
  border-radius: 50px;
  font-size: 1.5rem;
  /* box-shadow: 1px 1px 1px var(--accent) */
  cursor: pointer;
  font-weight: 500;
}
/* .heroButtonWrapper .buttonContainer button::after {
  box-shadow: -5px -5px -5px var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}  */

.heroButtonWrapper .buttonContainer button::after:hover {
  opacity: 1;
} 

.filled {
  background: var(--accent);
  border: none;
  color: var(--bg);
  animation: heroButtonFloatDown 0.8s ease-in-out normal !important;
  transition: all 0.3s ease-in-out;
}

.filled:hover {
  background: rgba(0,0,0,0);
  border: var(--accent) solid 5px;
  padding: 0;
  color: var(--accent);
}

.outlinedOnPageLoad {
  animation: heroButtonFloatDown 1s ease-in-out normal !important;
}

.outlined {
  background: rgba(0,0,0,0);
  border: var(--accent) solid 5px;
  padding: 0;
  color: var(--accent);
  position: relative;
}


.outlined:hover{
  animation: outlinedJump 0.5s ease-in-out;
}

@keyframes outlinedJump {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -10%);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes heroButtonFloatDown {
  from {
    opacity: 0;
    transform: translate(0, -20%);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.downloadButton button,
.contributeButton button {
  height: 80px !important;
  width: 160px !important;
  font-size: 1.2rem !important;
}