/* styles.css */

body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
    color: #333;
    margin: 0;
    padding: 0;
}

.top-section {
    background-color: #0066cc;
    color: #fff;
    padding: 15px;
    text-align: center;
}

h1, h2 {
    margin: 0;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin-right: 15px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.content {
    max-width: 800px;
    margin: 20px auto;
}

.content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}


/* styles.css */

/* ... existing styles ... */

/* Responsive styles for smaller screens */
@media only screen and (max-width: 600px) {
    .top-section {
        padding: 10px;
    }

    nav ul li {
        margin-right: 10px;
    }

    .content {
        max-width: 100%;
        padding: 0 10px;
    }

    .content p {
        font-size: 14px;
    }
}


/* ... existing styles ... */

.image-section {
    max-width: 800px;
    text-align: center;
    margin: 20px auto;
}

.image-section img {
    margin: 10px;
    border-radius: 8px;
}

/* ... additional styles ... */

.content,
.objectives {
    max-width: 800px;
    margin: 20px auto;
}

.content p,
.objectives p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact {
    max-width: 800px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.information {
    max-width: 800px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


.acknowledgements {
    max-width: 800px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact h2 {
    color: #0066cc;
}

.contact p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact a {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover {
    text-decoration: underline;
}

table {
    border-collapse: collapse;
    width: 100%;
}
th, td {
    border: 1px solid black;
    padding: 8px;
    text-align: center;
}
th {
    background-color: #f2f2f2;
}