body {
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  background-color: #f1f1f1;
  color: #000000;
  margin: 0;
}

header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0px 0px;
  background-color: #7537b6;
  color: #e8ecff;
  
  top: 0;
  width: 100%;
}


h1 {
  margin: 0;
  padding: 10px;
}

li {
  list-style-type: none;
  align-items: right;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0%, 40%;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #e8ecff;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  color: #decbf5;
  text-decoration: underline;
}

.logo {
  max-width: 150px;
  /* Adjust the size as needed */
  max-height: 80px;
  /* Set a proportional height */
  height: auto;
  /* Maintains aspect ratio */
  width: auto;
  /* Maintains aspect ratio */
}

li {
  text-align: left;
}

.sponsor-logo {
  max-width: 90%;
  /* Adjust the size as needed */
  max-height: auto;
  /* Set a proportional height */
  height: auto;
  /* Maintains aspect ratio */
  width: auto;
  /* Maintains aspect ratio */

}

.capstone-intro {
  text-align: center;
  font-size: 15px;
  margin-bottom: 2%;

}

.layout-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  /* Two equal columns */
  gap: 40px;
  /* Space between the columns */
}

.description-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 10px;
  gap: 40px;
}

.description-container-tech {
  display: grid;
  grid-template-columns: .1fr .9fr;
  padding: 10px;
  gap: 40px;
}

.requirement,
.theProblem,
.description {
  background-color: #ffffff;
  padding: 5% 5% 5% 5%;
  border-radius: 0px;
  text-align: center;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.082);
}

.requirement {
  margin-bottom: 20px;
}

.description-cycle {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cycle-img {
  width: 100%;
  height: auto;
}

.cycle-text {
  padding: 40px;
  font-size: large;
}


.graph-container {
  background-color: #1e0337;
  padding: 20px;
  border-radius: 0px;
  margin: 10px 290px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.graph {
  width: 100%;
  height: auto;
}

.tech-img {
  width: auto;
  height: 100%;
}

.tech-box {
  height: 70px;
  width: 250px;
  
}

.center {
  text-align: center;
}

video {
  width: 100%;
  height: auto;
}

.video-container {
  position: relative; /* Create a stacking context */
  z-index: -100; /* Lower stacking order */
  width: 100%; /* Adjust as needed */
  max-width: 800px;
  margin: 20px auto; /* Center the video */
}

.invisible-container {
  background-color: #00000000;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
}

button.colored-button {
  background-color: #29143d; /* Primary color: green */
  color: white;              /* White text */
  border: none;              /* Remove border */
  padding: 12px 24px;        /* Padding for a nice size */
  font-size: 24px;           /* Slightly larger text */
  border-radius: 30px;       /* Rounded corners for a modern look */
  cursor: pointer;           /* Pointer on hover */
  width: auto;
  height: 50%;
  transition: background-color 0.3s, transform 0.3s; /* Smooth transitions */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
}

/* Hover effect */
button.colored-button:hover {
  background-color: #7537b6; /* Slightly darker green on hover */
  transform: translateY(-3px); /* Slight upward movement on hover */
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2); /* Stronger shadow */
}

/* Focus effect for accessibility */
button.colored-button:focus {
  outline: none;               /* Remove default outline */
  box-shadow: 0px 0px 0px 4px rgba(76, 175, 80, 0.4); /* Add a focus ring */
}


.team-info,
.sponsor-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.team-member {
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.team-intro {
  text-align: left;
  margin-bottom: 5px;
  margin-top: 0px;
  font-size: 250%;
  padding-left: 6%;
  padding-bottom: 2%;
  padding-top: 3%;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr .1fr 1fr;
  /* 2x2 grid */
  gap: 20px;
  /* Space between the grid items */
}

.sponsor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-left: 2%;
  gap: 4px;
  /* Space between the grid items */
}


.sponsor-member {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 0px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

 .headshot {
  border-radius: 2%;
  width: 170px;
  height: auto;
  margin-bottom: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.389);
 }

.sponsor-member img {
  border-radius: 2%;
  width: 170px;
  height: auto;
  margin-bottom: 10px;
}

#intro {
  grid-template-columns: .55fr .45fr;
  background-color: #29143d;
  background-size: cover;   
  background-position: center; 
  text-align: left;
  display: grid;
  padding-left: 3%;
  padding-right: 3%;
  margin-left: 0%;
  margin-right: 0%;
  margin-top: 0%;
  margin-bottom: 2%;
  border-radius: 0%;
  box-shadow: 0 0px 16px rgba(0, 0, 0, 0.493);

}

.intro-image {
  background-image: url("./Images/Stairs.svg");
  background-repeat: no-repeat;
  background-position: right;
  width: 100%;
  height: auto;
}

.video-header {
  text-align: center;
  font-size: 30px;
  margin-bottom: 2%;
}

.bio-diagram {
  background-image: url("./Images/biolabdiagram.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;  
  width: 90%;
  height: auto;
}

.home-welcome {
  padding: 5px;
  padding-left: 50px;
  color: #ffffff;
  font-size: 400%;
}

.home-text {
  padding: 5px;
  padding-left: 50px;
  color: #ffffff;
  font-size: 200%;

}

h4 {
  color: #311452;
}

h3,
h4,
p {
  margin: 0;
  padding: 5px;
  color: #000000;
}

a {
  color: #341a4d;
}

hr {
  border: none;               /* Remove default border */
  height: 110%;               /* Full height */
  width: 1px;                 /* Width of the line */
  background-color: black;    /* Color of the line */
}

a:hover {
  text-decoration: underline;
}

#description {
  padding: 3% 5%;
  margin: 1% 10%;
  margin-bottom: 50px;
}

.hor {
  height: 1px;       
  width: 100%;  
}


.schedule-image {
  background-image: url("./Images/schedule.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: auto;
}

.documents {
  display: grid;
  gap: 30px;
}

#documentation {
  background-color: #f9f9f9;
}

.document {
  padding: 15px 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.096);
  background-color: white;
}

/* Section Styles */
section {
  padding: 30px 50px 50px 30px;
  margin-top: 0px;
  background-color: #ffffff;
  color: #3c2754;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.096);
  margin-bottom: 40px;
  margin-right: 10%;
  margin-left: 10%;
}

.footer-text {
  color: #ffffff;
}

/* Footer Styles */
footer {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  /* Footer height */
  text-align: center;
  padding: 10px;
  background-color: #29143d;
  color: #e8ecff;
  margin-top: 25px;
}