section{
  min-width: 1000px;
}
.header{
  display: flex;
  flex-direction: column;
}

.landingpagephoto{
  background-image: url(photo/landingpage.jpg);
  background-position: center;
  background-size: cover;
  height: 240px;
  padding: 0 7%;
}

.landingpagephoto h1{
  font-size: 5rem;
  color: white;
  text-align: center;
  padding-top: 60px;
}

.textandlogo h1, .text h1{
  font-size: 3rem;
}

.textandlogo{
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 7%;
}

.textandlogo p, .text p{
  line-height: 1.6rem;
  font-size: 1.2rem;
  text-align: justify;
  margin: 20px 30px 20px 0;
}

.biglogo{
  background-image: url(photo/FitZoneLogo.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left:  30px;
}

.text{
  margin: 0 7%;
}

.h1{
  font-size: 3rem;
  text-align: center;
}

.courage{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  min-height: 500px;
  column-gap: 50px;
  row-gap: 50px;
  margin: 30px 7%;
}

.reason{
  background-color: #008181;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  padding: 40px;
  transition: all 0.3s;
}
.reason:hover{
  box-shadow:4px 6px 0px 0px rgb(0, 0, 0,0.3);
}

.reason h1{
  font-size: 2rem;
  font-weight: bold;
  color: white;
}

.reason p{
  color: white;
}

.teammember{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  column-gap: 10px;
  margin: 0 7%;
}

.member{
  height: 130px;
  width: 300px;
  margin-top: 20px;
  padding: 40px 10px;
  background-color: #008181;
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  transition: all 0.3s;
}

.member:hover{
  box-shadow:4px 6px 0px 0px rgb(0, 0, 0,0.3);
}

.member h1, .member p{
  text-align: center;
  color: white;
}

