body {
            margin: 0;
            font-family: Arial, sans-serif;
            background: linear-gradient(135deg, black, #880808);
            color: white;
        }
        .title {
            text-align: center;
            font-size: 3em;
            color: white;
            margin-top: 20px;
        }
        .navbar {
            display: flex;
            align-items: center; /* Align items vertically */
            background: linear-gradient(to right, #880808, black);
            padding: 0px;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 100;
        }
        .navbar a {
            color: white;
            text-decoration: none;
            margin: 0px 10px;
            font-size: 1.2em;
            display: flex;
            align-items: center;
        }
        .navbar a i {
            margin-right: 8px;
        }
        .navbar img {
            width:75px;
            height: 75px; /* Maintain aspect ratio */
        }
        .container {
            text-align: center;
            padding: 20px;
            padding-top: 80px; /* To prevent content from being hidden behind the fixed navbar */
        }
        h2 {
            margin-top: 20px;
            font-size: 2em;
        }
        p {
            font-size: 1.2em;
            margin: 20px 0;
        }
        .footer {
            text-align: center;
            padding: 20px;
            background: rgba(0, 0, 0, 0.8);
        }
        .footer a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
            font-size: 1em;
        }
        .footer img {
            vertical-align: middle;
            margin-left: 10px;
            width: 150px; /* Adjust the size as needed */
            height: 150px; /* Adjust the size as needed */
        }
        .button {
            display: inline-block;
            background-color: #8b0000;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-size: 1.2em;
            margin-top: 20px;
            transition: background-color 0.3s ease;
            border: none;
            cursor: pointer;
        }
        .button i {
            margin-right: 10px;
        }
        .button:hover {
            background-color: #a00000;
        }
        .grid-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 20px;
        }
        .grid-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 10px;
        }
        .input-flexbox {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .input-flexbox select, .input-flexbox input {
            padding: 10px;
            margin: 5px 5px;
            border: 1px solid #ccc;
            border-radius: 5px;
            flex: 1;
        }