.flexNavMain{
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  background-color: rgb(2, 45, 70);
  color: white;
  font-size: 28px;
}

.flexNavLeft {
  flex: 40%;
  padding: 1px;
  width: 100%;
}

/* Main column */
.flexNavRight {
  flex: 25%;
  height: 100%;
  padding:30px;
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .flexNavMain{   
    flex-direction: column;
  }
  .flexNavLeft {
    flex: 100%;
    padding: 0px;
  }
  .flexNavRight {
    flex: 100%;
    font-size: 18px;
    padding:30px;
  }
}

.flexMissionMain{
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}
.flexMissionLeft {
  flex: 15%;
  padding: 1px;
  width: 95%;
}
.flexMissionMiddle {
  flex: 60%;
  padding: 1px;
  width: 95%;
}

/* Main column */
.flexMissionRight {
  flex: 15%;
  height: 100%;
  padding:5px;
}

.flexRow2Column{
  display: flex;
  align-items: baseline;
  background-color: white;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 95%;
  padding-left: 20px;
  padding-right: 20px;
}

.flexRow2ColumnLeft {
  flex: 20%;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.flexRow2ColumnRight {
  flex: 70%;
  padding-right: 60px;
  width: 100%;
}

.fullBorder {
   border-top: 1px solid black;
}

@media screen and (max-width: 700px) {
  .flexRow2Column{   
    width: 90%;
    flex-direction: column;
  }
  .flexRow2ColumnLeft, .flexRow2ColumnRight {
  flex: 90%;
  padding:0px;
  }
}
.flexResponsiveMain{
  display: flex;
  flex-direction: row;
  background-color: green;
  justify-content: center;
}

/* Responsive layout - makes a one column layout instead of a two-column layout */
@media (max-width: 800px) {
  .flexResponsiveMain {
    flex-direction: column;
  }
}

.flexResponsiveMain > div {
  background-color: #f1f1f1;
  width: 200px;
  height: 150px;
  margin: 10px;
  text-align: center;
  line-height: 75px;
  font-size: 20px;
}

@media (max-width: 800px) {
.flexResponsiveMain > div {
  background-color: red;
  margin: 2px;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 75px;
  font-size: 20px;
  }
}

.flexMain{
  display: flex;
  align-items: baseline;
  background-color: DodgerBlue;
  flex-wrap: wrap;
  justify-content: center;
}

.flexMain > div {
  background-color: #f1f1f1;
  width: 200px;
  height: 150px;
  margin: 10px;
  text-align: center;
  line-height: 75px;
  font-size: 20px;
}


.flexResponsiveNav{
  display: flex;
  flex-direction: row;
  background-color: green;
  justify-content: center;
}

/* Responsive layout - makes a one column layout instead of a two-column layout */
@media (max-width: 800px) {
  .flexResponsiveNav {
    flex-direction: column;
  }
}

.flexResponsiveNav > div {
  background-color: #f1f1f1;
  width: 200px;
  height: 150px;
  margin: 10px;
  text-align: center;
  line-height: 75px;
  font-size: 20px;
}

@media (max-width: 800px) {
.flexResponsiveNav > div {
  background-color: red;
  margin: 2px;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 75px;
  font-size: 20px;
  }
}

.flexResponsiveMain{
  display: flex;
  flex-direction: row;
  background-color: green;
  justify-content: center;
}

/* Responsive layout - makes a one column layout instead of a two-column layout */
@media (max-width: 800px) {
  .flexResponsiveMain {
    flex-direction: column;
  }
}

.flexResponsiveMain > div {
  background-color: #f1f1f1;
  width: 200px;
  height: 150px;
  margin: 10px;
  text-align: center;
  line-height: 75px;
  font-size: 20px;
}

@media (max-width: 800px) {
.flexResponsiveMain > div {
  background-color: red;
  margin: 2px;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 75px;
  font-size: 20px;
  }
}
