* {
  box-sizing: border-box;
}

/* Style the body */
body {
  font-family: Arial;
  margin: 0;
}

/* Header/logo Title */
.header {
  display: flex;
  height: 70px;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #f4f006;
}

/* Style the top navigation bar */
.navbar {
  display: flex;
  background-color: #5a0474;
}

/* Style the navigation bar links */
.navbar a {
  color: #f4f006;
  padding: 14px 20px;
  text-decoration: none;
  text-align: center;
}

/* Change color on hover */
.navbar a:hover {
  background-color: #f4f006;
  color: black;
}

  /* 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 only screen and (max-width: 700px) {
    .row, .navbar {   
      flex-direction: column;
    }
  }

.emailA {
  display: flex;
  height: 250px;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #f4f006;
}

figure {
  display: inline-block;
}
      
figcaption {
  text-align: center;
}

.flex-container {

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: space-around;
  overflow: scroll; 
  align-items: center; /* Aligns the boxes vertically in the center */
}

.flex-container1 {
  display: flex;
  height: 500px;
  flex-wrap: wrap;
  justify-content: center;
  align-content: space-around;
  overflow: scroll;  
  background-color: #5a0474;
}

.flex-container1 > div {

  background-color: #f6fa08;
  width: 300px;
  margin: 10px;
  text-align: center;
  line-height: 75px;
  font-size: 30px;
}

.box {
  width: 225px;
  height: 800px;
  background-color: #5a0474;
  display: flex;
  flex-direction: column; /* Aligns content vertically */
  justify-content: top;
  align-items: center;
  margin: 10px;
  text-align: center;
  line-height: 30px;
  font-size: 10px;
  border: 10px solid #f4f006;
}

.boxY {
  width: 300px;
  height: 400px;
  background-color: #f4f006;
  display: flex;
  flex-direction: column; /* Aligns content vertically */
  justify-content: top;
  align-items: center;
  margin: 10px;
  text-align: center;
  line-height: 30px;
  font-size: 10px;
  border: 10px solid #5a0474;
}

.boxP {
  width: 300px;
  height: 400px;
  background-color: #5a0474;
  display: flex;
  flex-direction: column; /* Aligns content vertically */
  justify-content: top;
  align-items: center;
  margin: 10px;
  text-align: center;
  line-height: 30px;
  font-size: 10px;
  border: 10px solid #f4f006;
}

.box3 {
  /*
  width: 1737px;
  height: 1303px;
  */
  background-color: #5a0474;
  display: flex;
  flex-direction: column; /* Aligns content vertically */
  justify-content: center;
  align-items: center;
  margin: 10px;
  text-align: center;
  line-height: 30px;
  font-size: 20px;
  border: 1px solid black;
}

.boxI1 {
  width: 400px;
  height: 400px;
  background-color: #f4f006;
  display: flex;
  flex-direction: column; /* Aligns content vertically */
  justify-content: center;
  align-items: center;
  margin: 10px;
  text-align: center;
  line-height: 30px;
  font-size: 20px;
  border: 1px solid black;
}

  .boxPA {
    display: flex;
    flex-direction: column; /* Aligns content vertically */
    justify-content: center;
    align-items: center;
    border-style: solid;
    border-width: 10px;
    border-color: #f4f006;
    text-align: center;
    padding: 10px;
    background: #5a0474;
  }

  .boxT {
    border-style: solid;
    border-width: 10px;
    border-color: #f4f006;
    padding-top: 0px;
    padding-right: 150px;
    padding-bottom: 0px;
    padding-left: 150px;
    text-align: center;
    background: #5a0474;
  }

h1 {
    font-size: 50px;
    color: #5a0474;
    text-align: center;
    justify-content: center;
}


h2 {
  font-size: 30px;
  color: rgb(0, 0, 0);
  text-align: center;
  justify-content: center;
}

h3 {
  font-size: 20px;
  color: #5a0474;
  text-align: center;
  justify-content: center;
}

h4 {
  font-size: 20px;
  color: #f4f006;
  text-align: center;
  justify-content: center;
  line-height: 10px;
}

h5 {
  font-size: 30px;
  color: #f4f006;
  text-align: center;
  justify-content: center;
}


  /* Footer */
  .footer {
    padding: 20px;
    text-align: center;
    background: #5a0474;
  }