body{
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: grey;
    color: black;
}
.missionHeader {
  display: flex;
  justify-content: center; /* centers horizontally */
  align-items: center;     /* centers vertically */
  height: 350px;           /* optional: controls vertical space */
}

img{
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

h2{
    text-align: center;
    font-size: 5em;
    margin-bottom: 20px;
    text-decoration: underline;
}

p{
    font-size: 1.5em;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
}

.home-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.home-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: black;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}
.home-button:hover {
  background-color: green;
}

.imgCon {
  display: flex;
  justify-content: space-around;
  margin-top: 10px;
}
.imgCon img {
  width: 100%;
  height: 50%;
}