 body {
            background-color: #ffccdd;
            font-family: 'Trebuchet MS', Arial, sans-serif;
            margin: 0;
            padding: 0;
            text-align: center; /* Center all text in the body */
        }

        h1 {
            font-size: 50px;
            margin-top: 50px;
            color: #333;
        }
		
		h2 {
    font-size: 30px;
}


        /* Navigation bar styles */
        nav {
            background-color: #333;
            overflow: hidden;
            display: flex;
            justify-content: center; /* Center the links horizontally */
            align-items: center; /* Center the links vertically */
            padding: 10px 0;
        }

        nav a {
            color: white;
            text-align: center;
            padding: 14px 20px;
            text-decoration: none;
            font-size: 18px;
            margin: 0 10px; /* Add spacing between links */
        }

        nav a:hover {
            background-color: #575757;
            color: white;
        }

        /* Flex container for card layout */
        .card-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-evenly; /* Space cards evenly */
            margin-top: 20px;
        }

        /* Portrait-style card */
        .card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 15px;
    text-decoration: none;
    color: #333;
    width: calc(24% - 30px); /* Reduced width by 20% */
    height: 240px; /* Reduced height by 25% */
    transition: all 0.3s ease;
    box-sizing: border-box;
    display: flex;
    flex-direction: column; /* Align content vertically */
    justify-content: center; /* Center content vertically */
    text-align: center; /* Center text horizontally */
}


        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .card h5 {
    margin: 0;
    font-size: 1.1em;
    margin-bottom: 10px; /* Add space between title and description */
    font-weight: bold; /* Make the title bold */
}


        .card p {
            font-size: 1em;
            color: #555;
            margin-top: auto; /* Push description to the bottom */
        }

        /* Adding table styles */
        table {
            width: 80%;
            margin: 0 auto;
            padding-top: 20px;
        }

        td {
            padding: 10px;
        }

        /* Styling for the links section headers */
        table h3 {
            margin-top: 0;
            text-align: left;
            font-size: 24px;
        }
