body {
            background-color: black;
            color: #f4c542;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 50vh;
            margin: 37px;
            justify-content: center;
            align-items: center;
            height: 100vh; /* Take full screen height */
            margin: 0; /* Remove default margin */
            text-align: center;
            filter: grayscale(35%);
            opacity: 0;
            transition: opacity .2s ease-in; /* Adjust timing (0.5s) as needed */
        }

        /* The pseudo-element for the background image */
        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/img/home.jpg') no-repeat center center fixed; /* Replace 'your-image.jpg' with the image path */
            background-size: cover;
            background-blend-mode: overlay; /* Blend the image with a solid color */
            background-color: rgba(18, 18, 18, .8);
            filter: grayscale(100%);
            box-shadow: inset 0 0 400px 100px #000;

            opacity: 0; /* Initially hidden */
            transition: opacity .2s ease-in; /* Smooth fade-in */
            z-index: -1; /* Ensure it stays behind the content */
        }

        body.loaded::before {
            opacity: 1; /* Fade in the background image */
        }

        body.loaded {
            opacity: 1;
        }

        .fade-out {
            opacity: 0;
        }

        a {
            text-decoration: none;

        }

        h1 {
            font-family: 'Merriweather', serif;
            font-size: 2.5em;
            font-weight: 700;
            letter-spacing: 1px;
            color: rgba(212, 175, 55, 0.9);
            /*text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);*/
        }

        nav {
            font-family: 'Roboto', serif;
            margin-top: 6px;
            margin-left: 20px;
            margin-right: 30px;
            font-family: 'Roboto', serif;
        }

        nav a {
            color: rgba(212, 175, 55, 0.73);
            /*text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);*/
            font-weight: 100;


            text-decoration: none;
            font-size: 0.8em;
            letter-spacing: 0.5px;
            display: block;
            margin: 10px 0;
            text-align: center;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: #d4af37;
        }

        hr {
            width: 80px;
            border: none;
            border-top: 2px solid rgba(212, 175, 55, 0.2);
            margin: 10px auto;
        }