* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100%;
    font-family: Consolas, Monaco, monospace;
    color: rgb(0, 0, 0);
    background-color: black;
  }
  
  .hero-home {
    background-image: url('images/hero/threestones.png'); /* update path as needed */
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
    position: relative;
  }

  .hero-about {
    background-image: url('images/hero/billboardlandscape2.jpg'); /* update path as needed */
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
    position: relative;
  }
  
  .topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
  }
  
  .site-title {
    font-size: 18px;
  }
  
  .menu a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    margin-left: 20px;
    font-size: 16px;
  }
  
  .menu a:hover {
    text-decoration: underline;
  }
  
  .footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    color: rgb(0, 0, 0);
    text-align: left;
    padding: 10px 0;
    font-size: 10px;
  }

  .text-panel {
    position: absolute;
    top: 100px;
    right: 40px;
    width: 450px;
    background-color: rgba(255, 255, 255, 0.8); /* translucent white */
    padding: 20px;
    color: black; /* black text on white background */
    font-family: Consolas, Monaco, monospace;
    border-radius: 0; /* no rounded corners */
  }
  
  .text-panel h1 {
    font-size: 12px;
    margin-bottom: 12px;
  }
  
  .text-panel p {
    font-size: 10px;
    line-height: 1.6;
    margin-bottom: 10px;
  }
  
  /* Responsive behavior */
  @media (max-width: 600px) {
    .text-panel {
      position: static;
      width: auto;
      margin: 20px;
      background-color: rgba(255, 255, 255, 0.9);
    }
  }