@import url('https://fonts.googleapis.com/css2?family=Lacquer&display=swap');

        body {
            background-color: black;
            color: white;
            font-family: Arial, sans-serif;
            text-align: center;
            margin: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
            opacity: 0;
            animation: fadeIn 1.5s ease-in forwards;
        }
        
	h1 {
	   font-family: 'Lacquer', cursive;
	}

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .content {
            max-width: 800px;
            padding: 20px;
        }
        
        .bottom-links a {
    	    color: white;
    	    text-decoration: underline;
    	    margin: 0 10px;
    	    font-size: 1em;
	}

	.bottom-links a:hover {
            text-decoration: underline;
	}

	.footer {
	    font-size: 0.8em;
	    margin-left: 10px;
	}
