body {
    margin: 0;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    background-image: url("https://img.idiocracy.today/coming_soon/universe_0.jpg");
    background-size: cover;
    backdrop-filter: brightness(50%);
  }
  
  canvas {
    display: block;
  }
  
  #canvas_container {
    width: 100%;
    height: 100vh;
  }

  a {
    color: white;
    text-decoration: none; /* Remove underlines from links */
  }
  
  button {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid white;
    border-radius: 5px;
    font-size: 0.9rem;
    padding: 0.5rem 0.9em;
    background: #000000;
    color: white;
    -webkit-font-smoothing: antialiased;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  button:hover {
    background: #ffffff;
    color: #000000;
  }

  .quote-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 1.2rem;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    width: 80%;
  }

  footer {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px 10px 0 0;
    width: 80%;
    max-width: 800px;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 1.2rem;
    color: white;
  }
  
  .footer-links {
    margin-bottom: 10px; /* Add some space between links and copyright text */
  }
  
  .footer-links a {
    color: #fff; /* Text color for the links */
    text-decoration: none; /* Remove underlines from links */
    margin: 0 10px; /* Add some spacing between links */
  }
  
  .footer-links a:hover {
    text-decoration: underline; /* Add underline on hover */
  }
  
  .footer-text {
    font-size: 14px; /* Adjust the font size for copyright text */
  }

  /* Media Query for Smartphones */
  @media screen and (max-width: 768px) {
    footer {
      width: 90%; /* Adjusted width */
      padding: 10px; /* Adjusted padding */
      font-size: 1rem; /* Adjusted font size */
      position: fixed; /* Keeps the footer at the bottom */
      left: 50%; /* Horizontally centers the footer */
      bottom: 10%; /* Aligns the footer at the bottom */
      transform: translateX(-50%); /* Correctly centers the footer */
      border-radius: 10px; /* Maintains the border radius */
      max-width: none; /* Removes the maximum width restriction */
      z-index: 999; /* Ensures the footer stays above other content */
    }
  }