html,
body {
  padding: 0;
  margin: 0;
  font-family: "Open Sans";
}

.banner {
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  display: none;
  border-bottom: 1px solid rgba(var(--b6a, 219, 219, 219), 1);
}
.banner p {
  color: rgb(68, 68, 68);
  font-size: 13px;
  margin: 0px;
  padding: 0.8em;
}

.banner a:hover {
  color: #d32626;
  cursor: pointer;
}

.header {
  display: block;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}

.media a {
  color: #68665f;
  text-decoration: none;
  font-size: 25px;
  margin-left: 5px;
}

.media a:hover {
  color: black;
  text-decoration: none;
}

.header section {
  width: 200px;
  text-align: center;
  color: #423f37;
  font-weight: 400;
  font-size: 13px;
}

.header section p {
  margin-bottom: 20px;
  margin-top: 9px;
}

header:after {
  content: "";
  position: absolute;
  top: 15%;
  bottom: 15%;
  right: -1px;
  width: 1px;
  background-image: -webkit-linear-gradient(
    top,
    rgba(227, 224, 216, 0) 0%,
    #e3e0d8 20%,
    #e3e0d8 80%,
    rgba(227, 224, 216, 0) 100%
  );
  background-image: -moz-linear-gradient(
    top,
    rgba(227, 224, 216, 0) 0%,
    #e3e0d8 20%,
    #e3e0d8 80%,
    rgba(227, 224, 216, 0) 100%
  );
  background-image: -ms-linear-gradient(
    top,
    rgba(227, 224, 216, 0) 0%,
    #e3e0d8 20%,
    #e3e0d8 80%,
    rgba(227, 224, 216, 0) 100%
  );
  background-image: -o-linear-gradient(
    top,
    rgba(227, 224, 216, 0) 0%,
    #e3e0d8 20%,
    #e3e0d8 80%,
    rgba(227, 224, 216, 0) 100%
  );
  background: linear-gradient(
    top,
    rgba(227, 224, 216, 0) 0%,
    #e3e0d8 20%,
    #e3e0d8 80%,
    rgba(227, 224, 216, 0) 100%
  );
}

.article {
  margin: 0 auto;
  overflow: hidden;
  position: absolute;
}

.lhc {
  margin-left: 6%;
  font-size: 13px;
  color: #423f37;
}

.lhc p {
  margin-top: 9px;
}

.lhc h2 {
  font-family: "Seaweed Script", cursive;
  font-size: 15px;
  color: #423f37;
  margin-bottom: 2px;
}

.lhc h3 {
  font-size: 14px;
  margin-bottom: 0px;
}
.wrapper {
  display: grid;
  /* grid-template-columns: 450px 450px; */
  grid-gap: 10px;
  background-color: #fff;
  color: #444;
}

.imgCard {
  background-color: #444;
  padding: 50px;
  padding-top: 100px;
  min-height: 100px;
}

ul {
  list-style: none;
  padding: 0;
}

.leftPad {
  padding-left: 10px;
}

a {
  color: #444;
  text-decoration: none;
}

.essays {
  margin-top: 40px;
}

.name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
}

.box a:hover {
  color: #d32626;
  cursor: pointer;
}
@media (min-width: 1050px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 20%;
  }

  header section {
    position: absolute;
  }

  .article {
    margin: 0 0 10% 20%;
    width: 80%;
    overflow: hidden;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
  }

  body {
    overflow-y: hidden;
  }

  .banner {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
