@charset "UTF-8";
/* CSS Document */

body {
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
            background-color: #ffffff;
        }
        .logo-container {
            text-align: center;
        }
        .logo {
			margin-top: 20px;
            max-width: 450px; /* Adjust the logo size as needed */
            height: auto;
        }
        .text {
            font-size: 13px;
            margin-top: 20px;
            color: #000;
			font-family: Arial, Helvetica, sans-serif;
			
        }
		.copyright {
            font-size: 11px;
            margin-top: 5px;
            color: #000;
			font-family: 'Courier New', monospace;
        }
		.menu {
            font-size: 13px;
            margin-top: 20px;
            color: #000;
			font-family: 'Courier New', monospace;
		}
		a {
  		text-decoration: none;
		}
		/* unvisited link */
		a:link {
		color: dimgray;
		  
		}

		/* visited link */
		a:visited {
		  color: black;
		}

		/* mouse over link */
		a:hover {
		text-decoration: underline;
		color: black;
		}

		/* selected link */
		a:active {
		  color: black;
		}
		/*img {
		filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");    
	   -webkit-filter: grayscale(100%);
	   -moz-filter: grayscale(100%);
	   -ms-filter: grayscale(100%);
	   filter: grayscale(100%);
	   filter: gray;
		}
		img:hover {
	   -webkit-filter: none;
	   -moz-filter: none;
	   -ms-filter: none;
	   filter: none;
		}*/