body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 20px;
            background-color: #f8f8f8;
        }

        /* Navigation bar styles */
        .navbar {
            background-color: #333;
            overflow: hidden;
        }

        .navbar a {
            float: left;
            display: block;
            color: white;
            text-align: center;
            padding: 14px 16px;
            text-decoration: none;
            transition: background-color 0.3s;
        }

        .navbar a:hover {
            background-color: #555;
        }
		h1 {
            text-align: center;
            margin-bottom: 20px;
        }

        /* Global styles */
       
        /* Card container styles */
        .card-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 2000px;
        }

        /* Card styles */
        .card {
            width: 250px;
            height: 250px;
            margin: 10px;
            background-color: #1e90ff;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: black;
            text-align: center;
            transition: transform 0.3s;
        }

        .card:hover {
            transform: scale(1.05);
        }

        /* Card title styles */
        .card-title {
            font-size: 18px;
            margin: 10px 0;
			font-weight: bold;
        }