@keyframes appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

body {
  width: 100%;
  max-width: 100vw;
  height: fit-content;
  display: flex;
  flex-direction: column;
  place-items: center;
  font-family: "Poppins", sans-serif;
  color: #f2ece4;
  margin: 0;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  overflow-y: auto;
  overflow-x: clip;
  background-color: #001314;
}

body.loaded {
  visibility: visible;
  opacity: 1;
  animation: appear 2s ease-in;
}

footer {
  padding-left: 40px;
  padding-right: 40px;
}

main {
  width: 100vw;
  max-width: 100%;
  overflow-x: clip;
}

@media (max-width: 1023px) {
  .desktop {
    display: none !important;
  }
}

@media (min-width: 1023px) {
  .mobile {
    display: none !important;
  }
}

main > section:first-child {
  display: flex;
  flex-direction: column;
  place-items: center;
  text-align: center;
  margin: 0;
}



#main-nav {
  z-index: 999;
  padding-top: 8px;
  padding-bottom: 8px;
  position: fixed;
  top: 8vh;
  transition: all 0.3s ease-in;
}

@media (max-width: 840px) {
  #main-nav {
    top: 4vh;
  }
}

html:not([data-scroll='0']) {
  #main-nav {
    top: 0vh;
    background-color: #031D1CCC;
  }
}

.main-nav__hidden {
  transform: translateY(-100%)
}

a {
  text-decoration: none;
  color: white;
  cursor: pointer;
}

p {
  font-size: 0.8rem;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 1024px) and (orientation: portrait) {
  p {
    font-size: 15px;
  }
}

.launching {
  font-size: 1vw;
}

@media (max-width: 1024px) and (orientation: portrait) {
  /*styles for portrait viewports of tablet*/
  .launching {
    font-size: 20px;
    max-width: 80vw;
    margin-bottom: 28px;
  }
}

@media (max-width: 768px) and (orientation: portrait) {
  /*styles for portrait viewports of phones*/
  .launching {
    font-size: 15px;
    margin-bottom: 10px;
  }
}

img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo {
  width: 220px;
  height: auto;
}

.number_container {
  display: flex;
  flex-direction: column;
  margin: 0 1.4vw;
}

@media (max-width: 1024px) and (orientation: portrait) {
  .number_container {
    margin: 0 24px;
  }
}

@media (max-width: 768px) and (orientation: portrait) {
  .number_container {
    margin: 0 15px;
  }
}

.number {
  font-weight: 700;
  font-size: 2.7vw;
  color: #f28705;
}

@media (max-width: 1024px) and (orientation: portrait) {
  .number {
    font-size: 40px;
  }
}

@media (max-width: 768px) and (orientation: portrait) {
  .number {
    font-size: 30px;
  }
}

.label {
  font-size: 1vw;
}

@media (max-width: 1024px) and (orientation: portrait) {
  .label {
    font-size: 14px;
  }
}

@media (max-width: 768px) and (orientation: portrait) {
  .label {
    font-size: 12px;
  }
}

.button,
.app-link-button,
.outline-button,
.contained-button {
  z-index: 3;
  width: 180px;
  padding: 8px 0;
  font-size: 13px;
  line-height: 14.4px;
  min-width: 140px;
  max-width: 240px;
  color: #fff;
  font-weight: 325;
  text-align: center;
  text-decoration: none;
  border-radius: 9999px;
  margin: 0 0.8vw;
  cursor: pointer;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.outline-button {
  background: transparent;
  border: 1px solid #4cfac7;
  color: #4cfac7;
}

.contained-button {
  background: #4cfac7;
  border: 1px solid #4cfac7;
  color: #053234;
  font-weight: 500;
}

#home .contained-button, #home .outline-button,
#ecosystem .contained-button, #ecosystem .outline-button,
#emma-ai .contained-button, #emma-ai .outline-button,
#market-performance .contained-button, #market-performance .outline-button,
#performance-graph .contained-button, #performance-graph .outline-button,
#utility-token .contained-button, #utility-token .outline-button {
  padding: 12px 0;
}

.outline-button:hover,
.contained-button:hover {
  box-shadow: 0 0 8px 0 #4cfac7;
}

@media (min-width: 1920px) {
  .button,
  .app-link-button,
  .outline-button,
  .contained-button {
    font-size: 15px;
    line-height: 18px;
    width: 210px;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  /*styles for portrait viewports of phones*/
  .button,
  .app-link-button,
  .outline-button,
  .contained-button {
    font-size: 10px;
    line-height: 12px;
  }
}

@media (max-width: 768px) and (orientation: portrait) {
  /*styles for portrait viewports of phones*/
  .button,
  .app-link-button,
  .outline-button,
  .contained-button {
    margin-bottom: 12px;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  /*styles for portrait viewports of phones*/
  .button,
  .app-link-button,
  .outline-button {
    margin-bottom: 12px;
  }
}

.button:hover,
.app-link-button:hover {
  background-position: 100% 0;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.button:focus {
  outline: none;
}

.app-link-container {
  z-index: 3;
  display: none;
  margin-top: 10vh;
}

@media (max-width: 768px) and (orientation: portrait) {
  /*styles for portrait viewports of phones*/
  .app-link-container {
    margin-top: 10px;
  }
}

.app-link-button {
  font-weight: 400;
  font-size: 1.7vw;
}

@media (max-width: 1024px) and (orientation: portrait) {
  .app-link-button {
    font-size: 15px;
    padding: 10px;
    line-height: 30px;
  }
}

.timer-container {
  margin-top: 13.2vh;
}

@media (max-width: 768px) and (orientation: portrait) {
  /*styles for portrait viewports of phones*/
  .timer-container {
    margin-top: 20px;
  }
}

.timer-header {
  font-size: 1vw;
  margin-bottom: 19px;
}

@media (max-width: 1024px) and (orientation: portrait) {
  /*styles for portrait viewports of tablet*/
  .timer-header {
    font-size: 20px;
    margin-bottom: 21px;
  }
}

@media (max-width: 768px) and (orientation: portrait) {
  /*styles for portrait viewports of phones*/
  .timer-header {
    font-size: 15px;
    margin-bottom: 12px;
  }
}

.social-container {
  background: transparent;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-direction: row;
  z-index: 5;
}

.social-link {
  background-color: #9999ff99;
  border-radius: 9999px;
  padding: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-link > img {
  width: 70%;
  height: auto;
}

.social-link:hover {
  box-shadow: 0 0 12px 0 #9999ff;
}

@media (max-width: 768px) and (orientation: portrait) {
  .social-link {
    width: 28px;
    height: 28px;
  }
}

@media (min-width: 769px) and (max-width: 1280px) {
  .social-link {
    width: 32px;
    height: 32px;
  }
}

@media (min-width: 1281px) {
  .social-link {
    width: 36px;
    height: 36px;
  }
}

.footer {
  font-size: 14px;
  width: 100%;
  max-width: 100vw;
  text-align: center;
  gap: 2vw;
  margin-top: 160px;
  padding-bottom: 16px;
}

.footer > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.footer h3 {
  font-size: 1.4rem;
}

.footer > .container > div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 600px) {
  .footer > .container {
    flex-direction: row;
  }
}

canvas {
  position: absolute;
  display: block;
  max-width: 100%;
  filter: blur(6px) drop-shadow(0 0 30px rgba(154, 96, 25, 1));
  transform-origin: 0 100%;
  /*transform: skewX(-20deg);*/
  animation: fadein 6s 1;
}

#video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-color: black;*/
}

#video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fade-out {
  opacity: 0;
  transition: opacity 0.5s;
}

.fade-in {
  visibility: visible;
  z-index: 100;
  background-color: black;
  opacity: 1;
  transition: opacity 0.5s;
}

.close-button {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background-color: transparent;
  border: none;
  font-size: 20px;
  color: white;
  cursor: pointer;
}

section {
  width: 100%;
  max-width: 100vw;
}

#main-nav {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-left: 32px;
  padding-right: 32px;
  align-items: center;
}

@media (min-width: 560px) {
  #main-nav {
    padding-left: 48px;
    padding-right: 48px;
  }
}

#main-nav ul {
  display: flex;
  gap: 32px;
  margin-left: auto;
  margin-right: auto;
}

#main-nav li a:hover, #main-nav li a.highlight {
  color: #4cfac7;
}

#main-nav .contained-button {
  height: fit-content;
}

.nav-menu {
  justify-content: space-between;
}

#mobile-menu {
  padding-top: 20vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

#mobile-menu ul a {
  font-size: 1.6rem;
}

#mobile-menu .contained-button {
  font-size: 1.4rem;
  width: 100%;
  height: fit-content;
  padding: 12px 0px;
  display: block;
}

.container {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 100%;
  max-width: 1440px;
  position: relative;
}

#emma-ai > .container,
#performance-graph > .container,
#utility-token > .container {
  max-width: 1200px;
}

#emma-ai {
  background-color: #162728;
}

#safe-yields {
  background-image: url("/img/1920_1080_safeyields_bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  place-items: center;
}

@media (max-width: 1024px) and (orientation: portrait) {
  /* styles for portrait viewports of tablets and phones */
  #safe-yields {
    background-image: url("/img/810_1080_safeyields_bg.png");
  }
}

@media (max-width: 768px) and (orientation: portrait) {
  /* styles for portrait viewports of tablets and phones */
  #safe-yields {
    background-image: url("/img/360_800_safeyields_bg.png");
  }
}

@media (max-width: 1024px) and (orientation: portrait) {
  /* styles for portrait viewports of tablets and phones */
  #safe-yields {
    background-image: url("/img/768_1024_safeyields_bg.png");
  }
}

@media (max-width: 1440px) and (orientation: landscape) {
  /* styles for portrait viewports of tablets and phones */
  #safe-yields {
    background-image: url("/img/1440_900_safeyields_bg.png");
  }
}

@media (min-width: 1921px) and (orientation: landscape) {
  /* styles for portrait viewports of tablets and phones */
  #safe-yields {
    background-image: url("/img/2560_1440_safeyields_bg.png");
  }
}

@media (max-width: 768px) and (orientation: portrait) {
  #safe-yields {
    align-items: center;
  }
}

#safe-pre-sale {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* #safe-pre-sale a{
  width: fit-content;
  height: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
} */

/* #safe-pre-sale:hover {
  opacity: 0.8;
} */

#safe-pre-sale img {
  height: 100px;
  width: auto;
  object-position: 52% 50%;

}

#safe-pre-sale {
  text-align: center;
}

#safe-pre-sale h3 {
  font-size: 24px;
}

#safe-pre-sale p {
  font-size: 16px;
}

@media (min-width: 840px) {
  #safe-pre-sale {
    right: 80px;
    left: unset;
  }
}

@media (min-width: 1024px) {
  #safe-pre-sale {
    right: 48px;
  }

  #safe-pre-sale img {
    height: 170px;
    width: auto;
    object-position: 60% 50%;
    margin-left: 16px;
  }

  #safe-pre-sale h3 {
    font-size: 24px;
  }

  #safe-pre-sale p {
    font-size: 18px;
  }
}

@media (min-width: 1150px) {
  #safe-pre-sale {
    top: 30.5%;
  }
}





#home {
  margin-top: 26vh;
  display: flex;
  flex-direction: column;
  align-self: center;
  align-items: center;
  text-align: start;
  width: min(80%, 700px);
}

#home h1 {
  font-weight: bold;
  font-size: 4.2rem;
  margin: 0;
}

#home .description {
  font-size: 1.6rem;
  font-weight: medium;
  width: 80%;
  max-width: 80%;
  text-align: center;
}

#home-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}

#home-links a {
  width: 180px;
  margin: 0;
}

#enter-dapp-desktop, #enter-dapp-mobile {
  border: none;
}

#enter-dapp-desktop:hover,
#enter-dapp-mobile:hover {
  box-shadow: 0 0 8px 0 #9999ff;
}

@media (max-width: 1024px) {
  #home {
    align-self: center;
    align-items: center;
    text-align: center;
    margin-left: 0px;
    margin-top: 16vh;
    width: 95%;
    max-width: 600px;
  }

  #home h1 {
    font-weight: bold;
  }

  #home .description {
    font-size: 1.1rem;
  }

  #home-links {
    justify-content: center;
  }
}

#citation {
  position: relative;
  padding-top: 120px;

  min-height: 60vh;
}

#citation > .container {
  text-align: center;
  align-items: center;
  gap: 60px;
  z-index: 1;
  position: relative;
}

.citation-quote {
  color: #4cfac7;
  font-size: 1.6rem;
  width: 70%;
  max-width: 660px;
}

.citation-author {
  font-weight: 500;
  font-size: 1rem;
}

#citation img {
  position: absolute;
  pointer-events: none;
}

#stars {
  width: 300px;
  height: auto;
  top: 220px;
  left: 10%;
  animation: stars 5s linear infinite;
  animation-direction: alternate;
}

@keyframes stars {
  from {
    opacity: 1;
  }

  to {
    opacity: 0.4;
  }
}

#aurora-boreal-1 {
  width: max(30vw, 300px);
  height: auto;
  top: 60px;
  left: -10vw;
  transform: rotate(-20deg);
  animation: aurora-boreal-1 10s ease-in infinite;
  animation-direction: alternate;
}

@keyframes aurora-boreal-1 {
  from {
    top: 60px;
    left: -10vw;
    transform: rotate(-20deg), scale(1);
  }

  to {
    top: 50px;
    left: -8vw;
    transform: rotate(-18deg), scale(1.1);
  }
}

#aurora-boreal-2 {
  width: max(30vw, 250px);
  height: auto;
  bottom: 60px;
  right: -10vw;
  transform: rotate(20deg);
  animation: aurora-boreal-2 10s ease-in infinite;
  animation-direction: alternate;
}

@keyframes aurora-boreal-2 {
  from {
    bottom: 60px;
    right: -10vw;
    transform: rotate(20deg);
    transform: rotate(-20deg), scale(1);
  }

  to {
    bottom: 50px;
    right: -8vw;
    transform: rotate(18deg);
    transform: rotate(-18deg), scale(1.1);
  }
}

#spaceship {
  transform: rotateY(180deg);
  width: max(21vw, 270px);
  height: auto;
  bottom: 30px;
  right: 10%;
  animation:
    spaceship 30s linear infinite;
  z-index: 0;
  animation-direction: reverse;
}

@media (max-width: 720px) {
  #spaceship {
    display: none;
  }
}

@keyframes spaceship {
  0% {
    bottom: 30px;
    right: 10%;
  }

  15% {
    bottom: 60px;
    right: 14%;
  }

  35% {
    bottom: 66px;
    right: 14.4%;
  }

  50% {
    bottom: 90px;
    right: 6%;
  }

  70% {
    bottom: 99px;
    right: 5.6%;
  }

  85% {
    bottom: 36px;
    right: 10.2%;
  }

  100% {
    bottom: 30px;
    right: 10%;
  }
}

#other-sections {
  background-color: #001314;
  position: relative;
}

#performance-graph,
#utility-token,
#market-performance {
  min-height: 50vh;
  margin-top: 60px;
}

@media (min-width: 1024px) {
  #market-performance {
    padding-top: 350px;
    margin-top: -150px;

  }
}



#market-performance > .container {
  gap: 32px;
  padding-right: 40px;
  padding-left: 40px;
  align-items: center;
  max-width: 1080px;
}

#market-performance > .container > h3 {
  margin-bottom: 16px;
  margin-right: auto;
}

#emma-ai-trading,
#emma-strategies {
  display: flex;
  gap: 32px;
  flex: 1;
  width: 100%;
  align-items: center;
}

.open-beta-results {
  margin-right: auto;
  text-align: center;
  font-size: 0.9rem;
  border-radius: 3px;
  padding: 4px 32px;
  background-color: #162728;
  color: #4cfac7;
  font-weight: 400;
  margin-bottom: -4px;
}

#emma-ai-trading h4,
#emma-strategies h4 {
  font-size: 1.5rem;
  width: 150px;
}

.market-performance-card-container {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
  flex: 1;
}

.market-performance-card {
  min-width: 200px;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 0;
  background-color: #d9d9d91a;
  text-align: center;
  display: flex;
  flex-direction: column;
  padding: 10px 16px;
  border-radius: 16px;
}

.market-performance-card > h5 {
  color: white;
  font-size: 1rem;
}

.market-performance-card > p {
  color: #4cfac7;
  font-size: 2.2rem;
  font-weight: bold;
}

#utility-token-content p,
#utility-token-content h3 {
  text-align: right;
}

@media (max-width: 1024px) {
  #emma-ai-trading,
  #emma-strategies {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  #emma-ai-trading h4,
  #emma-strategies h4 {
    font-size: 1.3rem;
    width: 100%;
    margin-bottom: -20px;
  }

  #market-performance > .container > h3 {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
  }

  .open-beta-results {
    margin-right: 0;
  }
}

@media (min-width: 1024px) {
  #performance-graph {
    padding-top: 400px;
    margin-top: -300px;

  }
}



#emma-bot {
  height: 400px;
  overflow-x: hidden;
  position: relative;
  overflow: hidden;
}

#performance-graph > .container,
#emma-ai > .container,
#utility-token > .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  justify-content: center;
  padding-right: 40px;
  padding-left: 40px;
}

#performance-graph-content,
#emma-ai-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 450px;
  margin-left: 40px;
  gap: 24px;
}

#performance-graph-content a,
#emma-ai-content a {
  margin: 0;
}

#emma-ai-content p {
  font-size: 1rem;
}

#performance-graph-chart,
#emma-bot {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

#performance-graph-chart {
  max-width: 500px;
}

#emma-bot {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  height: 470px;
  max-width: 500px;
  margin-left: auto;
}

#emma-purple-circle {
  left: 0;
  width: 60%;
  min-width: 260px;
}

#emma-green-circle {
  bottom: 0;
  right: 0;
  width: 60%;
  min-width: 260px;
}

#emma-robot {
  left: 50%;
  width: 100%;
  min-width: 400px;
}

#emma-bot > img {
  position: absolute;
  height: auto;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 960px) {
  #emma-purple-circle {
    left: 0;
  }

  #emma-green-circle {
    right: 0;
  }

  #emma-robot {
    left: 50%;
  }
}

.performance-graph-chart__background {
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

#utility-token {
  background-color: #162728;
}

#utility-token-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 550px;
  gap: 24px;
}

#utility-token-content > div {
  display: flex;
  justify-content: flex-end;
  gap: 12px 16px;
  width: 100%;
  align-items: flex-end;
}

#say-token {
  margin-top: -24px;
  transform: scale(1.1);
}

section h3 {
  font-size: 2rem;
}

#utility-token-content p,
#performance-graph-content p {
  font-size: 1rem;
}

#performance-graph-content p {
  max-width: 320px;
}

h3 > span,
p > span {
  color: #4cfac7;
}

span.white {
  color: white;
}


#utility-token-content > div a {
  margin: 0;
}

#utility-token h3 {
  text-align: right;
  font-size: 2rem;
}

@media (max-width: 800px) {
  #emma-ai > .container {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  #emma-ai-content {
    align-items: center;
    margin-left: 0;
  }

  #utility-token-content h3,
  #performance-graph-content h3 {
    text-align: left;
  }

  #performance-graph-content p,
  #emma-ai-content p {
    text-align: justify;
  }

  #utility-token > .container {
    align-items: center;
    height: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

  #utility-token > h3 {
    margin-bottom: 24px;
  }

  #utility-token-content > div {
    justify-content: center;
  }

  #section h3 {
    font-size: 2.1rem;
  }

  .content-section p {
    font-size: 1rem;
  }

  #utility-token h3 {
    text-align: center;
  }

  #utility-token-content {
    height: 100%;
    margin-right: 0;
    align-items: center;
  }

  #utility-token-content p {
    text-align: center;
  }

  #utility-token {
    justify-content: center;
    align-items: center;
    background-position: 55% 40px;
    background-size: 300px;
  }
}

@media (max-width: 900px) {
  #emma-bot {
    display: none;
  }

  #utility-token > .container {
    min-height: 40vh;
  }

  #say-token-container {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: 0.3;
    transform: scale(1.2);
  }
}

@media (max-width: 1024px) {
  #performance-graph > .container {
    flex-direction: column-reverse;
    align-items: center;
    gap: 28px;
  }

  #performance-graph-content {
    align-items: center;
    margin-left: 0;
  }

  #performance-graph-chart {
    margin-left: 0;
  }
}

#chart-stroke {
  width: 100%;
}

.full-height-section {
  height: 100dvh;
}

.bold {
  font-weight: bold;
}

.footer-logo {
  width: 160px;
  height: auto;
}

.to-top-button:hover {
  box-shadow: 0 0 8px 0 #4cfac7;
}

.footer .to-top-button {
  transition: all 0.3s ease-out;
  border-radius: 9999px;
  position: absolute;
  right: 0;
  top: -100px;
  width: 50px;
}

@media (max-width: 520px) {
  .footer .to-top-button {
    right: 32px;
    top: 0;
    width: 40px;
  }
}

@media (max-width: 400px) {
  .footer .to-top-button {
    right: 0;
  }
}

#advisory-contributors {
  min-height: 75vh;
  margin-top: 40px;
}

#core-contributors > .container > div,
#advisory-contributors > .container > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: max(5vh, 40px) max(10vw, 40px);
}

#core-contributors h2,
#advisory-contributors h2 {
  color: #4cfac7;
  font-size: 40px;
  text-align: center;
}

@media (max-width: 768px) {
  #core-contributors h2,
  #advisory-contributors h2 {
    font-size: 32px;
  }
}

#core-contributors h2 {
  margin-left: 40px;
  margin-bottom: 60px;
}

#advisory-contributors h2 {
  text-align: center;
  margin-right: 40px;
  margin-bottom: 60px;
}

#performance-graph,
#market-performance,
#core-contributors {
  padding-bottom: 120px;
}

#utility-token {
  display: flex;
  flex-direction: column;
  padding-top: 60px;
  padding-bottom: 90px;
  align-items: center;
}

@media (max-width: 640px) {
  #core-contributors > h2 {
    margin-left: 0px;
    text-align: center;
  }

  #advisory-contributors > h2 {
    margin-right: 0px;
    text-align: center;
  }
}

.person-card {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.person-card-image {
  width: auto;
  height: 130px;
}

.person-card-name {
  font-size: 1rem;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 4px;
  height: 24px;
}

.person-card .outline-button {
  margin-top: 16px;
}

.person-card-title {
  font-size: 0.9rem;
  text-align: center;
  color: #4cfac7;
  margin-bottom: 8px;
}

.person-card-description {
  color: white;
  text-align: justify;
}

#advisory-contributors .person-card-description {
  min-height: 70px;
}

#mobile-menu-trigger {
  width: 50px;
  height: 30px;
  position: relative;
  margin-left: auto;
  z-index: 9999;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

#mobile-menu-trigger span {
  display: block;
  position: absolute;
  height: 6px;
  width: 100%;
  background: #f2ece4;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#mobile-menu-trigger span:nth-child(1) {
  top: 0px;
}

#mobile-menu-trigger span:nth-child(2),
#mobile-menu-trigger span:nth-child(3) {
  top: 15px;
}

#mobile-menu-trigger span:nth-child(4) {
  top: 30px;
}

#mobile-menu-trigger.open span:nth-child(1) {
  top: 15px;
  width: 0%;
  left: 50%;
}

#mobile-menu-trigger.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#mobile-menu-trigger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#mobile-menu-trigger.open span:nth-child(4) {
  top: 15px;
  width: 0%;
  left: 50%;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.75) 100%
  );
  transform: translateX(-100dvw);
  z-index: 999;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.overlay.open {
  transform: translateX(0);
  opacity: 1;
}

.no-overflow {
  overflow: hidden !important;
}

#emma-ai, #core-contributors {
  padding-top: 71px;
  padding-bottom: 71px;
}

