        html, body {
            height: 100%;
            margin: 0;
        }

        body {
            display: flex;
            flex-direction: column;
            background: url('macho-manual.jpg') no-repeat center center fixed;
            background-size: cover;
            font-family: 'Arial', sans-serif;
            text-align: center;
            color: #fff;
        }

        /* Overlay effect */
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5); /* Adjust the alpha to change the transparency */
            z-index: 1;
        }

        header {
            background-color: rgba(255, 0, 51, 0.8); /* Vibrant red with some transparency */
            padding: 20px;
            z-index: 2;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
         header img {
            width: 50px; /* Adjust the size as needed */
            height: auto;
            margin: 0 50px;
        }

         /* Colorful and shimmering H1 */
       h1 {
    font-size: 3em;
    font-weight: bold;
    color: #E3C823; /* Initial bright yellow color */
    text-shadow: 
        0 0 5px #E3C823, /* Yellow */
        0 0 10px #EAA9E3, /* Pink */
        0 0 20px #E57D34, /* Orange */
        0 0 30px #CCE03C, /* Neon Green */
        0 0 40px #FFFFFF, /* White */
        0 0 50px #E3C823, 
        0 0 60px #EAA9E3, 
        0 0 70px #E57D34, 
        0 0 80px #CCE03C, 
        0 0 90px #FFFFFF;
    animation: shimmer 6s infinite;
    text-decoration: none;
    display: inline-block;
}


@keyframes shimmer {
    0% {
        color: #E3C823; /* Bright yellow */
        text-shadow: 
            0 0 5px #E3C823, 
            0 0 10px #EAA9E3, 
            0 0 20px #E57D34, 
            0 0 30px #CCE03C, 
            0 0 40px #FFFFFF, 
            0 0 50px #E3C823, 
            0 0 60px #EAA9E3, 
            0 0 70px #E57D34, 
            0 0 80px #CCE03C, 
            0 0 90px #FFFFFF;
    }
    25% {
        color: #EAA9E3; /* Pink */
        text-shadow: 
            0 0 5px #EAA9E3, 
            0 0 10px #E57D34, 
            0 0 20px #CCE03C, 
            0 0 30px #FFFFFF, 
            0 0 40px #E3C823, 
            0 0 50px #EAA9E3, 
            0 0 60px #E57D34, 
            0 0 70px #CCE03C, 
            0 0 80px #FFFFFF, 
            0 0 90px #E3C823;
    }
    50% {
        color: #E57D34; /* Orange */
        text-shadow: 
            0 0 5px #E57D34, 
            0 0 10px #CCE03C, 
            0 0 20px #FFFFFF, 
            0 0 30px #E3C823, 
            0 0 40px #EAA9E3, 
            0 0 50px #E57D34, 
            0 0 60px #CCE03C, 
            0 0 70px #FFFFFF, 
            0 0 80px #E3C823, 
            0 0 90px #EAA9E3;
    }
    75% {
        color: #CCE03C; /* Neon Green */
        text-shadow: 
            0 0 5px #CCE03C, 
            0 0 10px #FFFFFF, 
            0 0 20px #E3C823, 
            0 0 30px #EAA9E3, 
            0 0 40px #E57D34, 
            0 0 50px #CCE03C, 
            0 0 60px #FFFFFF, 
            0 0 70px #E3C823, 
            0 0 80px #EAA9E3, 
            0 0 90px #E57D34;
    }
    100% {
        color: #FFFFFF; /* White */
        text-shadow: 
            0 0 5px #FFFFFF, 
            0 0 10px #E3C823, 
            0 0 20px #EAA9E3, 
            0 0 30px #E57D34, 
            0 0 40px #CCE03C, 
            0 0 50px #FFFFFF, 
            0 0 60px #E3C823, 
            0 0 70px #EAA9E3, 
            0 0 80px #E57D34, 
            0 0 90px #CCE03C;
    }
}
        h2 {
            font-family: 'briarwood';
            font-size: 24px;
            color: #fff; /* White text for the header */
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Subtle text shadow for readability */
        }

        main {
            flex: 1;
            padding: 20px;
            z-index: 2;
        }
         .quote-container {
            padding: 20px;
            background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background for better readability */
            display: inline-block;
            border-radius: 10px;
            text-align: center; /* Center text inside the quote container */
 
        }

        #quote {
            font-size: 2em;
            font-weight: bold;
            color: #EEAA55; /* Vibrant yellow color */
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8); /* Strong text shadow for better contrast */
        }
        #quote-link {
           display: block;
           font-size: 0.8em; /* Smaller font size */
           color: #ffffff; /* Lighter color to make it less conspicuous */
           margin-top: 5px; /* Space between the quote and the link */
           text-decoration: none; /* Remove underline */
}

        
        footer {
  background-color: rgba(51, 51, 51, 0.8); /* dunkelgrau transparent */
  color: #fff;
  padding: 20px;
  z-index: 2;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-credit {
  font-size: 0.9rem;
  margin-top: 1rem;
}

.footer-credit a {
  color: #aaa;
  text-decoration: none;
}

.footer-credit a:hover {
  text-decoration: underline;
}


        /* Responsive styling for smaller screens */
        @media (max-width: 768px) {
            header {
                padding: 10px;
                flex-direction: column; /* Stack items vertically on small screens */
                align-items: center; /* Center align items vertically */
            }
             header img {
                margin: 10px 0; /* Adjust margins for vertical alignment */
            }

    header h1 {
                margin: 10px 0; /* Adjust top and bottom margins for better spacing */
                font-size: 2em;
               }
    header h2 {
                font-size: 18px;
               }           

            main {
                padding: 10px;
            }
        }

         /* Styling for buttons */
        button {
            background-color: #ff66cc; /* Vibrant pink background */
            color: #fff;
            border: 2px solid #FFFFFF; /* Bright blue border */
            padding: 10px 20px;
            margin: 10px;
            cursor: pointer;
            font-size: 16px;
            font-weight: bold;
            text-transform: uppercase;
            box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); /* Shadow effect */
            border-radius: 5px; /* Slightly rounded corners */
            transition: transform 0.2s; /* Smooth transition for transform effects */
        }

        button:hover {
            background-color: #ff66cc; /* Lighter pink on hover */
            border-color: #FFFFFF; /* Lighter blue on hover */
            transform: scale(1.1); /* Slightly enlarge on hover */
        }
        
        a {
            color: #fff;
        }

 .quote-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      padding: 1rem;
    }

    .quote-card {
      background-color: #fff;
      color: #000;
      border: 2px solid #c00000;
      border-radius: 12px;
      padding: 1rem;
      box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
      transition: transform 0.2s ease;
    }

    .quote-card:hover {
      transform: scale(1.02);
    }

    .quote-card p {
      font-size: 1.1rem;
      font-weight: bold;
      margin-bottom: 0.5rem;
    }

    .quote-card a {
      display: inline-block;
      margin-right: 10px;
      font-size: 0.95rem;
      color: #0077cc;
      text-decoration: none;
    }

    .quote-card a:hover {
      text-decoration: underline;
    }

    #loadMoreButton {
      background-color: rgba(255, 0, 51, 0.8);
      color: #fff;
      border: none;
      padding: 12px 24px;
      margin: 20px auto;
      display: block;
      font-weight: bold;
      text-transform: uppercase;
      border-radius: 8px;
      cursor: pointer;
      box-shadow: 2px 2px 8px rgba(0,0,0,0.4);
      transition: background-color 0.2s ease, transform 0.2s ease;
    }

    #loadMoreButton:hover {
      background-color: #ff3366;
      transform: scale(1.05);
    }
