html {
  background-color: #ade0ff;
}


@font-face {
  font-family: 'CAT';
  src: url('../catfiles/Catfiles.ttf') format('truetype');
}

@font-face {
  font-family: 'Bishop';
  src: url('../catfiles/text.ttf') format('truetype');
}

body {
  font-family: "Arial", sans-serif;
  background-color: #ade0ff;
  color: #333333;
  margin: 0;
  padding: 0;
  height: 100%;
  min-height: 90vh;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header {
  background-color: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 1000;
  color: #000000;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  border-top: 7px solid black;
  border-bottom: 7px solid black;
  width: 100%;
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 0;
  display: flex;
  justify-content: space-between;
}

.nav-links {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.nav-links li {
  margin-right: 20px;
  cursor: pointer;
}

.nav-links li a,
.nav-links li {
  font-family: "Luckiest Guy", cursive;
  text-decoration: none;
  color: #000000;
  font-size: 16px;
  text-transform: uppercase;
  padding: 10px;
}
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-icons a {
  display: inline-block;
  margin-left: 10px;
}

.social-icons img {
  width: 24px;
  height: auto;
  color: #000000;
}

.social-icons a {
  color: #000000;
  font-size: 24px;
  margin: 0 10px;
}

.nav-links img {
  width: 10%;
  height: auto;
  margin: 0;
  padding: 0 10% 0 0;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: none;
}

.dropbtn {
  background-color: #fff;
  color: black;
  padding: 10px;
  font-family: "Luckiest Guy", cursive;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  font-family: "Luckiest Guy", cursive;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {background-color: #f1f1f1;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: #ddd;}



.site-header {
  padding: 10px 0;
  background-color: #000;
}

.site-header h1 {
  color: #000000;
  font-size: 2em;
}

.content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  width: 100%;
}

.main-content-opening {
  margin-top: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-content {
  margin-top: 100px;
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40vh; 
}

.mascot img {
  max-width: 700px;
  height: auto;
  display: block;
  margin-bottom: 0;
}

.mascot-donuts img {
  margin-right: -100px;
  max-width: 700px;
  height: auto;
  display: block;
  margin-bottom: 0;
  padding-left: 50px;
}

.tokenomics-mascot img {
  justify-content: center;
  align-items: center;
  max-width: 100%;
  height: auto;
  display: flex;
}

.opening-text {
  width: 400px; 
  margin-top: 20px;
  font-size: 3em;
  color: #000;
  font-family: 'CAT', sans-serif;
}

.header-text {
  width: 400px; 
  margin-top: -30px;
  font-size: 2.5em;
  color: #000;
  font-family: 'CAT', sans-serif;
}

.coin-text {
  width: 400px; 
  margin-top: 20px;
  font-size: 1.2em;
  color: #000;
  font-family: 'Bishop', sans-serif;
}

.tokenomics-container {
  background-color:#122437;
  display: flex;
  align-items: center; 
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.tokenomics-content {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.header-text-tokenomics {
  text-align: center;
  align-items: center;
  justify-content: center;
  width: 100%; 
  margin-top: -30px;
  font-size: 2.5em;
  color: aliceblue;
  font-family: 'CAT', sans-serif;
}

.coin-text-tokenomics {
  text-align: center;
  align-items: center;
  justify-content: center;
  width: 400px; 
  margin-top: 20px;
  font-size: 1.4em;
  color: rgb(255, 255, 255);
  font-family: 'Bishop', sans-serif;
}


.ticker {
  width: 100%; 
  overflow: hidden; 
  background-color: #ffffff; 
  display: flex;
  color: black;
}

.ticker-content {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
}

@keyframes ticker {
  0% {
    transform: translate3d(100%, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

.mascot img {
  max-width: 700px;
  height: auto;
  margin-bottom: 0;
}

.coin-text {
  width: 400px; 
  margin: 20px 0; 
}


.ticker-wrapper {
  height: auto;
  max-width: 100%;
}

.ticker {
  display: block;
  font-size: 20px;
  background-color: white; 
  border: 7px solid black;
  border-right: 0px solid black;
  border-left: 0px solid black;
}

.ticker-content {
  margin-top:10px;
  color: black; 
  white-space: nowrap;
  overflow: hidden;
  font-family: "Luckiest Guy", cursive;
  white-space: nowrap;
  display: inline-block;
  animation: ticker 100s linear infinite;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-90%);
  }
}


.split-screen {
  display: flex;
  align-items: stretch; 
  min-height: 100vh;
}

.content-left {
  width: 50%; 
}

.content-right {
  width: 100%;
}

.full-screen-image {
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}
.split-screen {
  display: flex;
  align-items: stretch; 

}

.content-left {
  width: 50%; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-right {
  width: 100%; 
}

.full-screen-image {
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}

.full-width-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.header, .footer {
  background-color: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  position: relative;
  width: 100%;
  border-top: 7px solid black;
  border-bottom: 7px solid black;
}

.footer-text {
  text-align: center;
  color: #000000;
  font-family: "Luckiest Guy", cursive;
  margin: 10px 0;
}

.footer:after {
  content: "";
  display: table;
  clear: both;
}


.fade-in {
  opacity: 0;
  transition: opacity 0.33s ease-in-out;
}

.fade-in.active {
  opacity: 1;
}

.slide-in {
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
}

.slide-in.active {
  transform: translateY(0);
}

.scale-in {
  transform: scale(0);
  transition: transform 0.5s ease-in-out;
}

.scale-in.active {
  transform: scale(1);
}

.grid-container {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px; 
  padding: 20px;
  width: 40%; 
  margin-top: 50px; 
}

.grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  color: #000;
  border: 7px solid black;
  padding: 20px; 
  width: 300px;
  height: 100px; 
  background-color: #ade0ff; 
}

@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr; 
    grid-template-rows: repeat(4, 1fr);
  }
}


@media screen and (max-width: 600px) {
  .header, .footer {
    padding: 0px 0;
    font-size: 1em;
  }

  .nav-links li {
    margin: 10px 5px; 
    font-size: 1em; 
  }

  .social-icons {
    display: flex;
    justify-content: flex-end;
  }

  .social-icons a {
    font-size: 24px;
    margin-left: 10px;
  }

  .main-content-opening, .main-content {
    margin-top: 90px;
    margin-bottom: 30px;
  }

  .mascot img {
    max-width: 100%;
  }

  .coin-text {
    font-size: .8em;
  }

  .opening-text, .header-text {
    width: 80%;
    text-align: center;
    font-size:2em;
    justify-content: center;
    align-items: center;
    margin: auto;
    display: flex;
  }


  .split-screen {
    margin-top: 100px;
    flex-direction: column;
    height: auto;
  }

  .content-left, .content-right {
    width: 100%;
  }

  .full-screen-image {
    height: auto; 
    width: 100%;
  }

  
  .dropdown {
    display: block; 
    margin: 0 20px;
    display: flex;
    align-content: center;
  }

  .dropbtn {
    background-color: transparent; 
    border: none; 
    color: black; 
    font-size: 24px; 
    cursor: pointer; 
    padding: 10px 15px;
    display: flex; 
    align-items: center;
  }
    
    .nav-container {
      justify-content: space-between; 
      align-items: center;
    }

  
    .nav-links {
      display: none; 
    }

    .nav-container img {
      display: block; 
      width: 50px; 
      margin-right: auto;
    }

    
    .content-container {
      display: flex;
      justify-content: center;
      align-items:center ;
      margin-left: auto;
      width: 100%;
    }
  .main-content-opening {
    flex-direction: column; 
    width: 100%;

  }

  .content-right {
    margin-top: 100px;
    width: 100%;
    margin-bottom: -20px;
  }

  .mascot,
  .opening-text {
    padding: 10px; 
    width: 80%;
    align-items: center;
    justify-content: center;
  }

  .opening-text {
    order: 1;
  }

  .mascot {
    order: 2;
    margin-bottom: -40px;
  }

  .main-content {
    flex-direction: column;
  }

  .coin-text {
    flex-direction: column;
    text-align: center;
    width: 80%;
  }

  .mascot-donuts img {
    padding: 10px; 
    width: 80%;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 30px;

  }
  
  .header-text-tokenomics {
    font-size: 2em;

  }
  
  .coin-text-tokenomics {
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 80%; 
    margin-top: 20px;
    font-size: 1em;
    color: rgb(255, 255, 255);
    font-family: 'Bishop', sans-serif;
  }
  
}


.play-pause-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  color: #000;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  z-index: 1000;
}
