 body, html {
            height: 100%;
            margin: 0;
            font-family: Arial, sans-serif;           
			background-image: linear-gradient(to right, #75e496, #1c6f79);
            z-index: -1;
        }

        .bg-image {
            background-size: cover;
            background-position: center;
            height: 90%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
        }

        .overlay {
            z-index: 300;
            background-color: rgba(37, 139, 15, 0.5);
            padding: 40px;
            border-radius: 8px;
        }

        .btn-custom {
            z-index: 220;
            background-color: #4caf50;
            color: white;
            font-size: 1.2rem;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        .btn-custom:hover {
            background-color: #45a049;
        }

        .background-centered {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('background.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            z-index: 2;
            opacity: 0.7;
        }

        footer {
            font-family: 'Arial', Courier, monospace;
            /*background-image: linear-gradient(to right, #75e496, #1c6f79);*/
			background-image: linear-gradient(to right, #75e49600, #1c6f79);
            font-size: 10px;
            padding: 15px;
            position: relative;
            z-index: 1000;
        }

        footer p {
            margin: 0;
            font-size: 14px;
            color: #f0f0f0;
            z-index: 99999;
			font-weight: bold;
        }

        footer a {
            color: #add5f6;
            text-decoration: none;
            font-weight: bold;
        }

        footer a:hover {
            color: #45a049;
            text-decoration: underline;
        }