@font-face {
  font-family: "FuturaND-Bold";
  src: url("../fonts/FuturaND-Bold.otf");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "FuturaND-Bold", "Arial";
  background: #f7f5f4;
  color: #231f20;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
}
#logo_container {
  display: inline-block;
  position: relative;
}
#logo_container img {
  width: 15.75rem;
}
/* Lines */
#logo_container:before,
#logo_container:after {
  content: "";
  position: absolute;
  height: 0px;
  border-top: 1px solid #a7a9ab;
  border-bottom: 1px solid #d3d3d3;
  top: 125px;
  width: 120%;
}
#logo_container:before {
  right: 100%;
  margin-right: 25px;
}
#logo_container:after {
  left: 100%;
  margin-left: 25px;
}
/* Responsive */
@media only screen and (orientation : portrait) {
  body {
    font-size: 200%;
  }
  #logo_container:before,
  #logo_container:after {
    width: 0;
  }
  #logo_container img {
    width: 100%;
  }
}
