@font-face {
    font-family: 'RoutedGothicNarrow';
    src: url('../font/routed-gothic-narrow.ttf') format('truetype');
  }

  @font-face {
    font-family: 'RoutedGothic';
    src: url('../font/routed-gothic.ttf') format('truetype');
  }

body {
    margin: 0;
    background-color: #4E5B3F;
    color: #eeeeee;
    font-family: 'RoutedGothic', sans-serif;
    text-align: center;
}

a {
    color: #eeeeee;
}

#textbook {
    display: flex;
    flex-direction: column;
}

#author {
    margin-top: 4vh;
    font-size: 24pt;
}

#title {
    margin-top: 2vh;
    font-size: 40pt;
    font-family: 'RoutedGothicNarrow', sans-serif;
}

#viewport {
    margin-top: 5vh;
}

#subtitle {
    margin-top: 4vh;
    font-size: 34pt;
    font-family: 'RoutedGothicNarrow', sans-serif;
}

@media (max-width: 760px) {
    body {
      width: 95%;
      margin: 10px;
    }
  
    img {
      width: 100%;
    }

    .quote {
        padding: 5px;
    }
  }