.navbar {
        background-color: #1c1c1c;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        left: 0;
        right: 0;
        padding: 15px 30px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
    }

    .navbar .nav-logo {
        color: white;
        text-decoration: none;
        font-size: 1.5em;
        font-weight: bold;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        margin: 0;
    }

    .navbar .nav-logo:hover {
        color: #ffffff;
        text-decoration: none;
        transform: scale(1.05);
        transition: transform 0.3s ease;
    }

    .navbar ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
    }

    .navbar ul li {
        margin-left: 20px;
    }

    .navbar ul li a {
        color: white;
        text-decoration: none;
        font-size: 1em;
        padding: 5px 10px;
        border-radius: 4px;
        transition: background-color 0.3s ease;
    }

    .navbar ul li a:hover {
        background-color: #333;
    }

body {
            background-color: #3a3a3a;
            background-size: cover;
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            font-family: 'Segoe UI', Arial, sans-serif;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
            margin: 0px;
        }

        p {
            margin-bottom: 20px;
            font-size: 16px;
        }
        .container {
            min-height: 100vh;
            max-width: 1200px;
            margin: 0 auto;
            flex-grow: 1;
        }

        h1 {
            padding-top: 70px;
            color: #ffffff;
            text-align: center;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            animation: fadeIn 2s ease-in-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        h2 {
            color: #4a90e2;
            border-bottom: 1px solid #444;
            padding-bottom: 10px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
            animation: slideIn 2s ease-in-out;
        }

        h2:hover {
            color: #639fd3;
            transition: color 0.3s ease;
        }

        @keyframes slideIn {
            from { transform: translateY(20px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        p {
            color: white;
            font-size: 16px;
            line-height: 1.6;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
            animation: fadeInText 2s ease-in-out;

        }

        @keyframes fadeInText {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        a {

            color: #4a90e2;
        }

        .footer {
            width: 100%;
            background-color: #1c1c1c;
            position: relative;
            text-align: center;
            justify-content: space-between;
            padding: 50px 50px;
            margin-top: 50px;
            border-top: 1px solid #444;
            font-size: 14px;
            color: #888;
            box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
        }

        .footer a{
            color: #4a90e2;
            text-decoration: none;
        }

        .footer a:hover{
            text-decoration: none;
            color: #639fd3;
        }

        