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

header {
    background-color: #003366;
    color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

header nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem; /* Increased font size for header links */
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #cce5ff;
}

.title, .heading {
    text-align: center;
    margin-top: 20px;
    color: #4682B4;
}

.team-container {
    display: flex;
    justify-content: space-around;
    margin: 40px auto;
    max-width: 1200px;
}

.team-member {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    width: 30%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.team-member h3 {
    margin-top: 0;
    color: #003366;
}

.text-box {
    max-width: 100%; 
    max-height: 200px; 
    overflow-y: auto; /* Enable vertical scrolling */
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.text-box p {
    margin-bottom: 10px;
    line-height: 1.5;
}

.social-links {
    color: #4682B4;
    margin-top: 15px;
}

.social-links a {
    color: #4682B4;
    text-decoration: none;
}

.social-links a:hover {
    color: #4682B4;
    text-decoration: underline;
}

body {
  background-image: url("pic/Jelly.gif");
  background-color: #cccccc;
  background-size: cover; /* Scales the image to cover the entire background */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  background-position: center center; /* Centers the image in the viewport */
}
