.headshot{
  border-radius: 50%;
  width: 200px;
  padding: 20px;
}
section{
  overflow: hidden;
}
.border{
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%,0);
  width: 50%;
  height: 100%;
  border: 1px solid #fff;
  border-radius: 3rem;
  box-shadow: 20px 20px 20px #000;
  overflow-y: visible;
  margin: 50px 0 50px;
  background: rgba(32, 16, 0, 0.75);
}
.textBox p{
  padding: 15px 50px;
  text-shadow: 10px 10px 10px #000;
  text-align: justify;
  hyphens: auto;
}
.textBox h2{
  margin: 30px 30px 60px;
}
.rows{
  position: relative;
  width: 100vw;
  justify-content: space-around;
}
.box{
  display: inline-block;
  position: relative;
  width: 15rem;
  top: 0;
  aspect-ratio: 1;
  border-radius: 3rem;
  margin: 20px;
  box-shadow: none;
  transition: 0.5s;
}
.box:hover{
  box-shadow: 5px 10px 10px #000;
  top: -5px;
}
.box img{
  position: absolute;
  aspect-ratio: preserve;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  height: 100%;
}
.layer{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: 0.5s
}
.layer:hover{
  background: rgba(0, 0, 0, 0);
}
.layer i{
  font-size: 3rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  position: absolute;
  color: rgba(255, 255, 255, 0.5);
}
.fullscreen{
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-50%,-50%);
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  transition: 1s;
  z-index: 2;
  overflow: hidden;
}
.fullscreen img{
  width: 50%;
}
@media(max-width:1200px){
  .headshot{
    width: 125px;
  }
  .border{
    font-size: 0.9em;
    width: 90%;
    transform: translate(-50%,0);
    overflow-y: scroll;
  }
  .box{
    border-radius: 1rem;
    width: 25%;
    margin: 10px;
  }
  .layer i{
    font-size: 2rem;
  }
  .fullscreen{
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
  }
  .fullscreen img{
    width: 100%;
  }
}
