
		* {
			font-family: 'Times New Roman', Times, serif;
		}

		/* Style for the list container */
		ul {
			list-style-type: none;
			padding: 0;
		}

		/* Style for each list item */
		li {
			margin-bottom: 1px;
			background-color: #f9f9f9;
			border-radius: 10px;
			box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
			transition: transform 0.3s ease;
		}

		/* Hover effect for list items */
		li:hover {
			transform: translateY(-5px);
		}

		/* Style for the anchor tags */
		a.udemy-item {
			display: block;
			padding: 20px;
			text-decoration: none;
			color: #333;
			/* Default link color */
			font-size: 18px;
			font-weight: bold;
			text-align: center;
			border-radius: 10px 10px 0 0;
			text-transform: uppercase;
		}

		/* Style for anchor tags on hover */
		a.udemy-item:hover {
			color: #fff;
			background-color: #007bff;
		}

		/* Style for the bottom border */
		a.udemy-item::after {
			content: '';
			display: block;
			width: 80%;
			height: 2px;
			background-color: #007bff;
			margin: auto;
			margin-top: 10px;
			border-radius: 50%;
		}

        /* Style for the footer */
        .footer {
            font-style: italic;
            color: #888;
            font-size: 18px;
            text-align: center;
        }