@font-face {
  font-family: Franklin Gothic Demi;
  src: url("../fonts/franklin-gothic-demi/Franklin Gothic Demi Regular.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Franklin Fothic Demi;
  src: url("../fonts/franklin-gothic-demi/Franklin Gothic Demi Italic.ttf");
  font-weight: normal;
  font-style: italic;
}


body {
  background-image: url(../img/WoodFlooring.svg);

  background-attachment: fixed;
  background-position: center;
  background-repeat: repeat;
  background-size: 320px 116px;
}


header {
  display: grid;
  grid-template-areas:
    "logo div"
    "logo h1"
    "logo h2";
}


.content {
  display: grid;
  grid-template-columns: 45% 55%;
  justify-content: center;
  flex-flow: row wrap;
  gap: 20px;
}
.content > section {
  flex: 1 1 350px;
}
section {
  background-color: blanchedalmond;
}

h1, 
h2, 
h3,
h4 {
  font-family: Franklin Gothic Demi, 'Arial Narrow', Arial, sans-serif;
}
h1 {
  font-style: normal;
  grid-area: h1;
  vertical-align: text-bottom;
}
h2 {
  font-style: italic;
  grid-area: h2;
}
h3 {
  font-style: normal;
}
h4 {
  font-style: italic;
}


.logo {
  grid-area: logo;
  width: 200px;
}
.doc-items {
  width: 50%;
  position: relative;
}
.file-reader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  border: 5px dashed #530000;
  padding: 20px;
  margin: 20px 0;
}
.pdf {
  box-shadow: 0 0 16px black;
  /*border: 20px outset #F7C77B;*/
  box-sizing: border-box;
}



@media screen and (max-width: 1000px) {
  div.content {
    display: flex;
    flex-direction: column-reverse;
    align-items: stretch;
  }
}

@media screen and (max-width: 1000px) {
  header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  h1 {
    text-align: center;
    font-size: 36px;
    margin: 0;
  }
  h2 {
    text-align: center;
    font-size: 24px;
  }

  .logo {
    width: 30%;
    margin: 5px;
  }
}