		body {
            margin: 0;
            padding: 0;
            background-color: #333; /* Dark grey background */
            font-family: Arial, sans-serif;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: normal;
            align-items: center;
            height: 100vh;
            position: relative;
        }
        #main-image {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures the image covers the entire area without distortion */
            position: absolute;
            top: 89px;
            left: 0;
            z-index: -1;
        }
        .links {
            display: flex;
            gap: 20px;
            z-index: 1;
			padding: 30px;
        }
        .links a {
            color: red;
            text-decoration: none;
            font-size: 1.25em;
        }
        .links a:hover {
            text-decoration: underline;
			<!--text-decoration: bold; -->
        }