
body {
            background-color: #1a1a1a;
            color: white;
            font-family: 'Bitcount Grid Single',  Arial, sans-serif;
            text-align: center;
        }

        h1 {
            color: cyan;
            text-shadow: 0 0 10px cyan;
        }
        h2 {
            color: magenta;
            text-shadow: 0 0 10px magenta;
        }
        h3 {
            color: green;
            text-shadow: 0 0 10px green;
        }

        a {
            color: yellow;
        }

        button {
            background-color: rgba(255, 0, 0, 0.171);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 10px;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.2s;

        }

        button:hover {
            background-color: cyan;
            transform: scale(1.1);
        }
        
        ul {
            text-align: left;
        }
        ol{
            text-align: left;
        }
        table {
            margin: 40px auto;
            border-collapse: collapse;
            min-width: 40%;
            max-width: 90%;
        }
        table, th, td {
            border: 1px solid cyan;
        }
        th, td {
            padding: 8px 16px;
            text-align: left;
        }
        th {
            background-color: #111;
            color: cyan;
        }
        form {
            background-color: rgb(34, 33, 33);
        }

        
