@font-face {
    font-family: Palatino;
    src: url("/Palatino/Palatino-Linotype-Regular.ttf");
}
@font-face {
    font-family: Palatino;
    font-style: italic;
    src: url("/Palatino/Palatino-Linotype-Italic.ttf");
}

@font-face {
    font-family: Gill Sans;
    src: url("/Gill-Sans/Gill-Sans.otf");
}
@font-face {
    font-family: Gill Sans;
    font-style: italic;
    src: url("/Gill-Sans/Gill-Sans-Italic.otf");
}
@font-face {
    font-family: Gill Sans;
    font-weight: bold;
    src: url("/Gill-Sans/Gill-Sans-Bold.otf");
}

html, body{
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
body {
  background-color: white;
  color: black;
  font-family: Palatino,Palatino Linotype,Palatino LT STD,Book Antiqua,Georgia,serif;
  text-align: center;
  font-size: 2vh;
}
h1 {
  text-align: center;
  font-weight: normal;
  font-size: 4vh;
}
div {
  text-align: justify;
  /*padding: 7%;  */
}
a {
  color: black;
  text-decoration: none;
}
a:hover{
  /*font-style: italic;*/
  text-decoration-line: underline;
}
nav {
  font-family: Gill Sans, Helvetica, sans-serif;
  text-align: center;
  font-size: 2vh;
}
ul {
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
footer {
  font-family: Gill Sans, Helvetica, sans-serif;
  font-size:2vh; 
  text-align:center;
  
  position:fixed;
  bottom: 2%; 
  left: 50%; 
  transform:translate(-50%, -50%);
  
  a {color:gray}
}

.prose {
  a {
    color: black;
    text-decoration-line: underline;
  }
  a:hover {
    text-decoration-line: none;
  }
}
.list {
  font-family: Gill Sans, Helvetica, sans-serif;
  font-size: 2vh;
}
.banner-div {
  text-align: center;
}
.banner-img {
  object-fit: cover;
  height: 20vh;
  max-height: 20vh;
}

.relative {
  position: relative;
  left: 0px;
}

@media (min-width: 851px) {  
  div {
    width: 40%;
    max-width: 40%;
    padding-right: 30%;
    padding-left:  30%;
  }
  .banner-div {
    width: 70%;
    max-width: 70%;
    padding-right: 15%;
    padding-left: 15%;
  }
  .wide-div {
    width: 80%;
    max-width: 80%;
    padding-right: 10%;
    padding-left: 10%;
  }
  .right {
    width: 40%;
    top: 0%;
    left: 50%;

  }
}
@media (max-width: 850px) and (min-width: 601px) {
  div {
    width : 60%;
    max-width: 60%;
    padding-right: 20%;
    padding-left:  20%;
  }
  .banner-div {
    width: 80%;
    max-width: 80%;
    padding-right: 10%;
    padding-left: 10%;
  }
}
@media (max-width: 600px) {
  div {
    width: 90;
    padding-right: 5%;
    padding-left: 5%;
  }
  .banner-div {
  
    width: 100%;
    padding-right: 0%;
    padding-left: 0%;

  left: 0px;
  right: 0px;
  top: 0px;
  }
}

img {
  width: 100%;
}