/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
      .content-box {
            text-align: left;
            background-color: #fcaf49;
            padding: 30px;
            border-radius: 2px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            max-width: 1200px;
            width: 80%;
            margin: 0 auto; 
            color: black;
            font-family: Arial, sans-serif;
            opacity: 0.75;
      }
            
.sidebar {
  position: fixed;   
  top: 80;
  left: 0;           
  width: 260px;      
  height: 50vh;     
  background-color: #ffcd8c;
  z-index: 1000;     
  padding: 20px;
  box-sizing: border-box;
  border-radius: 10px;
  opacity: 0.5;
}

body {
  background-image: url("Images/pipes.png");
    background-size: cover;          /* Stretches the image to cover the entire viewport */
    background-repeat: no-repeat;    /* Prevents the image from tiling/repeating */
    background-position: center;     /* Centers the image on the screen */
    background-attachment: fixed;    /* Keeps the background fixed while scrolling */
  font-family: Verdana;
}