* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Fira Sans', sans-serif;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #111;
            color: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 100vh;
            padding-top: 150px; /* Space for fixed header */
            padding-bottom: 80px; /* Space for fixed footer */
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: #111;
            text-align: center;
            padding: 20px 0;
            border-bottom: 1px solid #333;
            z-index: 1000;
        }
        
        p{
        font-family: 'Poppins', sans-serif;
        }

        header h1 {
            color: #ff0000;
            font-size: 2em;
            margin-bottom: 5px;
        }

        header h2 {
            color: #ff0000;
            font-size: 1.5em;
        }

        .container {
            text-align: center;
            max-width: 600px;
            width: 100%;
            margin: 0 auto;
        }

        .container p {
            color: #aaa;
            margin-bottom: 40px;
        }

        .card {
            background-color: #222;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            position: relative;
        }

        .card h3 {
            color: #ff0000;
            margin-bottom: 10px;
        }

        .sub-container {
            background-color: #333;
            border-radius: 5px;
            padding: 10px;
            margin-bottom: 15px;
            color: #bbb;
            position: relative;
        }

        .details {
            display: none;
            color: #bbb;
            margin-top: 10px;
            text-align: left;
        }

        .extra-button {
            display: none;
            margin-top: 10px;
            background-color: #008000; /* Different color for distinction */
            color: #fff;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            text-decoration: none;
            transition: background-color 0.3s;
        }

        .extra-button:hover {
            background-color: #006400;
        }

        button {
            background-color: #ff0000;
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        button:hover {
            background-color: #cc0000;
        }

        footer {
            position: fixed;
            bottom: 0;
            width: 100%;
            background-color: #111;
            text-align: center;
            padding: 10px 0;
            border-top: 1px solid #FF0000;
            z-index: 1000;
            color: #777;
            font-size: 0.9em;
            font-family: 'Poppins', sans-serif;
        }

        .footer-links{
            font-family: 'Poppins', sans-serif;
            color: #777;
            font-size: 1em;
            transition: transform 0.3s ease, color 0.3s ease;
            margin: 0 8px;
        }

        .footer-links a:hover {
            color: #ff0000;
            transform: scale(1.2);
        }

        footer a {
            color: #ff0000;
            text-decoration: none;
            margin: 0 10px;
            font-size: 1.2em;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        footer a:hover {
            color: #cc0000;
            transform: scale(1.2);
        }

        .social-icons {
            margin-top: 10px;
        }

        .social-icons a {
            color: #777;
            font-size: 1.5em;
            transition: transform 0.3s ease, color 0.3s ease;
            margin: 0 8px;
        }

        .social-icons a:hover {
            color: #ff0000;
            transform: scale(1.2);
        }
        
