.centered-img {
            display: block;              /* Makes the image a block element */
            margin: 0 auto;              /* Centers the image horizontally */
            width: 80%;                  /* Sets the image width to 50% of its container */
            max-width: 100%;             /* Ensures it doesn't exceed its original size */
            height: auto;                /* Maintains aspect ratio */
        }

        body, html {
            height: 100%; /* Ensure full height */
            margin: 0;
            padding: 0;
            overflow: hidden; /* Prevent scrolling */
        }
        
        .parallax-container {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('imgs/Background.webp');
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            will-change: transform; /* Optimize layer */
            z-index: -1; /* Keep it in the background */
        }
        
        .zoomed {
            transform: scale(2); /* Adjust scale as needed */
            transition: transform 0.3s ease-in-out; /* Smooth transition */
            cursor: zoom-out; /* Indicates that the image can be zoomed out */
        }
        
        .content {
            position: relative;
            z-index: 1; /* Above the background */
            /* Additional styles for your content */
        }
        .container {
            position: relative;
            z-index: 1;
            max-width: 600px;
            padding: 20px;
            background-color: rgba(0, 0, 0, 0.7);
            border-radius: 15px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            animation: fadeIn 1s ease-in-out;
            margin-top: 20px;
        }

        h1 {
            color: #e97451; /* Rust-inspired color */
            font-size: 48px;
            margin-bottom: 20px;
            letter-spacing: 2px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
        }

        p {
            font-size: 18px;
            line-height: 1.6;
            color: #f4f4f4;
            margin-bottom: 15px;
        }
        body {
            margin: 0;
            padding: 0;
            font-family: 'Roboto', Arial, sans-serif;
            background: url('imgs/Background.webp') center center / cover fixed no-repeat;
            color: #ffffff;
            text-align: center;
            position: relative;
            overflow: auto;
        }
        
        .container, .tools-section {
            margin: 20px auto; /* Centers horizontally */
            max-width: 600px; /* Or whatever max width you prefer */
            padding: 20px;
            background-color: rgba(0, 0, 0, 0.7);
            border-radius: 15px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            position: relative; /* Ensures it stacks on top of the background */
        }
        
        /* Continue with your other styles */

        .tools-section {
            position: relative;
            z-index: 1;
            width: 80%;
            max-width: 800px;
            margin-top: 20px;
            padding: 20px;
            background: rgba(0, 0, 0, 0.8);
            border-radius: 15px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }

        .tools-section h2 {
            font-size: 32px;
            color: #e97451;
            margin-bottom: 15px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
        }

        .tools-list {
            list-style: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .tools-list li {
            background: #333;
            padding: 10px 15px;
            border-radius: 10px;
            transition: background 0.3s;
        }

        .tools-list li a {
            text-decoration: none;
            color: #e97451;
            font-size: 18px;
            display: block;
            text-align: center;
        }

        .tools-list li:hover {
            background: #444;
        }

        .coffee-button {
            position: fixed;
            right: 20px;
            bottom: 20px;
            z-index: 1000;
        }

        .coffee-button img {
            height: 50px;
            width: auto;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 10px rgba(255, 221, 0, 0.7);
            border-radius: 10px;
        }

        .coffee-button img:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 15px rgba(255, 221, 0, 0.9);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .compass {
            position: absolute;
            width: 50px;
            height: 50px;
            background: url('imgs/compass.png') center / contain no-repeat;
            pointer-events: none;
            animation: spin 3s linear infinite;
            opacity: 0;
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }