/* styles.css */

main {
    text-align: center;
    padding: 20px; /* Add padding to create space for scrolling */
}

ul {
    list-style-type: none; /* Remove default list styles */
    padding: 0;
}

li {
    margin-bottom: 20px; /* Add space between publications */
    text-align: left; /* Align text to the left */
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0; /* Light gray background */
    color: #333; /* Dark gray text */
}

header {
    background-color: #333; /* Dark gray header */
    padding: 10px;
    color: #fff; /* White text */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    margin: 0;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff; /* White links */
    text-decoration: none;
}

nav ul li a:hover {
    color: #ff6600; /* Orange hover color */
}

main {
    padding: 20px;
    margin-bottom: 50px;
}

.photo-section {
    text-align: center;
    margin-bottom: 20px;
}

.photo-section img {
    max-width: 500px;
    height: auto;
}

footer {
    margin-top: 100px;
    background-color: #333; /* Dark gray footer */
    color: #fff; /* White text */
    text-align: center;
    padding: 10 px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.logo img {
    max-width: 100px; /* Adjust the maximum width as needed */
    height: auto;
}

.team-member {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-items: center;
    align-items: center;
}

.member-info {
    text-align: center;
}

.member-info img {
    max-width: 200px;
    height: 200px;
}

