
/* this is a css reset that makes sure the browser won't add any unexpected margins or padding to your page */
body, html{
  margin:0;
  padding:0;
  box-sizing: border-box;
  min-height: 100%;
}


/* call an element from your html and style it here! */
/* for example... */

/* some text  */

.infoCont{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 10rem;
}

.infoContFooter{
  margin-top: 4rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: .75rem;
  color: red;
}

header{
  background: oldlace;
  background-image: url("../img/site-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px;
  border-top: 1px solid red;
}

header h1, footer h1{
  font-family: "Onest", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 1.5rem;
}

header h2{
  max-width: 66%;
  font-family: "Stack Sans Notch", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 2rem;
}

main{
  background-color: powderblue;
  font-family: "Onest", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

p{
  font-size: 30px;
  color: blue;
  text-align: center;
}

.container{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
  /* gap: 50px; */
    border-top: 2px solid red;
    border-bottom: 2px solid red;

}

.contentBox{
  width: 33%;
  height: 300px;
  border-right: 1px solid oldlace;
  border-bottom: 1px solid oldlace;
  background-repeat: no-repeat;
  background-size: cover;
  flex-grow: 1;
}

.contentBox:last-child{
  flex-grow: 0;
}

.contentBox a{
  font-size: 2rem;
  text-align: center;
}

a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: seagreen;
  /* padding-top: 15%; */
  text-decoration: none;
}

a:hover{
  background: white;
  /* border: 2px solid red; */
  transition-duration: 200ms;
  color: red;
  border-radius: 15px;
}


footer{
  background-color: antiquewhite;
  border-bottom: 1px solid red;
  padding: 40px 40px 20px 40px;
}

/* BG IMAGES */


#alhalabi{
  background-image: url("../img/alhalabi.png");
  background-color: powderblue;
  background-blend-mode: soft-light;
}

#alston{
  background-image: url("../img/alston.png");
  background-color: powderblue;
  background-blend-mode: soft-light;
}

#anderson{
  background-image: url("../img/anderson.png");
  background-color: powderblue;
  background-blend-mode: soft-light;
}

#bazzy{
  background-image: url("../img/bazzy.png");
  background-color: powderblue;
  background-blend-mode: soft-light;
}

#bowden{
  background-image: url("../img/bowden.png");
  background-color: powderblue;
  background-blend-mode: soft-light;
}

#curr{
  background-image: url("../img/curr.png");
  background-color: powderblue;
  background-blend-mode: soft-light;
}

#dahl{
  background-image: url("../img/dahl.png");
  background-color: powderblue;
  background-blend-mode: soft-light;
}

#do{
  background-image: url("../img/do.png");
  background-color: powderblue;
  background-blend-mode: soft-light;
}

#dummer{
  background-image: url("../img/dummer.png");
  background-color: powderblue;
  background-blend-mode: soft-light;
}

#hammoud{
  background-image: url("../img/hammoud.png");
  background-color: powderblue;
  background-blend-mode: soft-light;
}

#latif{
  background-image: url("../img/latif.png");
  background-color: powderblue;
  background-blend-mode: soft-light;
}

#lehal{
  background-image: url("../img/lehal.png");
  background-color: powderblue;
  background-blend-mode: soft-light;
}

#nyquist{
  background-image: url("../img/nyquist.png");
  background-color: powderblue;
  background-blend-mode: soft-light;
}

#pavliv{
  background-image: url("../img/pavliv.png");
  background-color: powderblue;
  background-blend-mode: soft-light;
}

#ratliff{
  background-image: url("../img/ratliff.png");
  background-color: powderblue;
  background-blend-mode: soft-light;
}

#pinto{
  background-image: url("../img/pinto.png");
  background-color: powderblue;
  background-blend-mode: soft-light;
}

#richter{
  background-image: url("../img/richter.png");
  background-color: powderblue;
  background-blend-mode: soft-light;
}

#stanis{
  background-image: url("../img/stanis.png");
  background-color: powderblue;
  background-blend-mode: soft-light;
}

#zarzycki{
  background-image: url("../img/zarzycki.png");
  background-color: powderblue;
  background-blend-mode: soft-light;
}



@media (max-width: 768px) {
  header h2{
  max-width: 100%;
  font-size: 1.5rem;
  }

  .contentBox{
  width: 49.5%;
  height: 200px;
}
  
}


@media (max-width: 425px) {
  .contentBox{
  width: 100%;
  height: 200px;
  }

  .infoContFooter{
    flex-direction: column;
  }

}