/* Images at top with black border */
.team-images img {
 width: 400px;
 height: 400px;       
 object-fit: cover; 
 border: 10px solid black; 
 margin: 10px;   
}
/* Body */
body {
 background-color: #d3d3d3; 
 color: #000000;
 font-family: Arial, sans-serif;
 line-height: 1.8;  
 margin: 0;
 padding: 0;
}
/* Top section */
.top-section {
 background: linear-gradient(to right, #ff0000, #0000ff);
 text-align: center;
 padding: 30px 0;
}

/* H1  styling */
.top-section h1 {
 font-family: 'Roboto Slab', Arial, sans-serif;
 font-size: xxx-large;
 color: #ffffff;
 text-shadow: 2px 2px #000000;
  letter-spacing: 3px;
 font-variant: small-caps;
 white-space: nowrap;
 margin-bottom: 20px;
}

/* Main text section styling */
.text-section {
 max-width: 900px;
 margin: 20px auto;
 padding: 20px;
 background-color: #d3d3d3; 
}
/* Footer*/
footer {
 text-align: center;
 padding: 15px;
 background-color: #000000;
  color: #ffffff;
}

/* Footer links */
footer a {
 color: #ff0000;
 text-decoration: none;
 margin: 0 10px;
}