html,body {
    margin: 0;
    padding: 0;
    background-color: #14171A;
    font-family: "Share Tech Mono", monospace;
  }


  canvas {
    position: fixed;
    pointer-events: none;
    z-index: -1; /* Push the canvas behind other elements */
  }
  
    .content {
      position: absolute;
      font-size: 200px;
      color: #ffffff;
  }



  /* INDEX.HTML  */
.textContainer {
  flex-direction: column;
  margin: 10px;
  z-index: 1;

}
.GUIcontainer {

  position:fixed;
  right:5vw;
  top:25px;
  font-size: 0px;
}

.GUIcontainer img {
  z-index: 1;
  width: 500px;
  height: auto;
}
  .description {
    font-size: 40px;

  }
  .buyButton {
    opacity: 0.7;
    

    font-family: inherit;
    font-size:70px;
    color: inherit;

    border: none;
    padding: 5px 5px;
    cursor: pointer;
    text-align: center;
    will-change: color;
  }


  .link { 
    color: inherit;
    text-decoration: none;
    transition : color 0.2s ease-in-out;
    margin: 10px;
    background-color: black;
  }
  .link:hover {
    color: #77803f;
  }



 

 




  @media screen and (max-width: 1000px) {
    .content {
      flex-direction: column;
      font-size: 80px;
    }
    .buyButton{ 
      font-size: 50px;
    }


    .GUIcontainer {
      position: static;
      display: block; /* Make the container a block element */
      width: 100%; /* Full width of the content container */
      text-align: center; /* Center the image within the GUIcontainer */
    }
  
    .GUIcontainer img {
      width: 70%; /* Adjust width for smaller screens */
      max-width: 150%; /* Make the image responsive */
      height: auto; /* Maintain aspect ratio */
    }
    
  }
