@font-face {
  font-family: 'Playfair Display';
  src: url(./font/PlayfairDisplay-Regular.ttf);
  font-weight: 400;
}

@font-face {
  font-family: 'Playfair Display';
  src: url(./font/PlayfairDisplay-Italic.ttf);
  font-style: italic;
}

@font-face {
  font-family: 'Playfair Display';
  src: url(./font/PlayfairDisplay-BlackItalic.ttf);
  font-weight: 600;
  font-style: italic;
}

* {
  box-sizing: border-box;
}

body {
  background-color: #dfdfdf;
  margin: 0;
  padding: 0;
  font-family: 'Playfair Display', 'Times New Roman', Times, serif;
}

a {
  color: rgb(65, 83, 76);
  font-size: 1.5rem;
}

footer {
  text-align: center;
  padding: 1rem;
}

footer a {
  font-style: italic;
  font-size: 1rem;
}

.quicklinks>h2 {
  text-align: center;
}

.quicklinks>div {
  display: flex;
  justify-content: space-around;
  padding: 1rem 0;
}

.vertical {
  display: flex;
  flex-direction: column;
  height: 100%;
  flex-grow: 1;
}

.section {
  display: flex;
  height: 90vh;
  min-height: 38rem;
  width: 100vw;
  overflow: hidden;
  position: relative;
}

.section img {
  z-index: 1;
}

.panel {
  position: relative;
  padding: 10px;
  width: 50%;
}

.slip {
  width: initial;
  min-width: 50vw;
  flex-grow: 1;
  padding: 0 1rem;
}

.khaki {
  background-color: rgb(179, 155, 126);
  color: white;
}

.beige {
  background-color: rgb(197, 179, 161);
  color: black;
}

.white {
  background-color: white;
  color: black;
}

.section h1 {
  font-style: italic;
  font-weight: 600;
  font-size: 3rem;
  text-align: center;
}

.section h2 {
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
}

.bottom {
  position: absolute;
  bottom: 2rem;
  left: 10px;
  right: 10px;
  margin: 0 auto;
}

.callout {
  width: 140%;
  left: -70%;
  margin: initial;
  z-index: 2;
}

.callout h2 {
  margin: 1rem 0;
}

.highlight {
  width: 38rem;
  left: calc(50% - 19rem);
  top: 20%;
  position: absolute;
}

.bump {
  top: 30%;
}

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

.italic {
  font-style: italic;
}

.link {
  line-height: 1.5rem;
}

@media screen and (max-width: 1079px) {
  .highlight {
    width: 36rem;
    left: calc(50% - 18rem);
  }

  .bump {
    top: 37%;
  }
}

@media screen and (max-width: 600px) {
  .section {
    flex-direction: column;
    height: initial;
    min-height: initial;
  }

  .panel {
    width: 100%;
    flex-grow: 1;
  }

  .highlight {
    width: 48rem;
    position: relative;
    left: -10rem;
    top: 0rem;
  }

  .bottom {
    position: initial;
  }

  .split {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 400px) {
  .highlight {
    left: -15rem;
  }
}
