* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Form container centering class */
body {
  background-color: gray;
}

.form-container {
  width: 70%;
  margin: 20px auto;
  padding: 20px;
  border: 2px solid green;
  border-radius: 10px;
  background-color: #1a1a1a;
}

main {
  width: 960px;
  margin: auto auto;
}

.navbar {
  display: inline-flex;
  flex-direction: row;
  text-decoration: none;
  font-size: 1rem;
  margin: 0 0.2rem;
}

.navbar a {
  text-decoration: none;
  font-size: 1.5rem;
  color: black;
}

.navbarItem {
  display: inline-flex;
  list-style: none;
  text-decoration: none;
}

/* team.html styles */

.contact-info p {
  margin: 5px 0;
}

.footerItems {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  border: solid 10px;
  padding: 40px 20px;
  min-height: 150px;
  font-size: 1.2rem;
}

.footerHeader {
  text-align: center;
  align-items: baseline;
  margin: 0;
  font-weight: bold;
  font-size: 1.2rem;
}

.HelloStaff {
  display: flex;
  justify-content: center;
}

.staffFlexCard {
  display: flex;
  flex-direction: column;
  border-color: black;
  border: 0.2rem;
  max-width: 960px;
}

.staffMember {
  display: flex;
  flex-direction: row;
  border: solid 0.2rem;
  font-size: 1rem;
}

.staffText {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: 15px;
  margin-top: 1rem;
  font-size: 1rem;
  list-style: none;
  text-decoration: none;
}

.social-icons {
  display: inline-flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  padding-left: 1rem;
}

.social-icons a {
  font-size: 24px;
  color: #333;
  transition: color 0.3s ease;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  margin-top: auto; /* This pushes it to the bottom */
  text-align: left;
  align-items: baseline;
  font-size: 1.2rem;
  padding-top: 5rem;
  padding-left: 1rem;
}

figcaption {
  padding-left: 1rem;
}
