@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  width: 100%;
  background-color: honeydew;
  color: forestgreen;
  font-family: "Times New Roman", "Times", serif;
  font-size: 19.8px;
}


body {
  margin: 15px;
}

@media screen and (max-width: 1036px) {
  body {
    margin: 15px auto;
  }
}

/* width */
::-webkit-scrollbar {
  width: 20px;
}

/*/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}

/*/* Handle */
::-webkit-scrollbar-thumb {
  background: forestgreen; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: darkgreen; 
}

hr {
  border: 3;
  color: forestgreen;
  border-bottom: 4px forestgreen;
/*  margin-right: 1em;
  margin-left: 1em;*/
}

ol, ul {
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-block;
}


/*section a.back-to-menu {
  position: absolute;
  top: 1em;
  right: 1em;
  float: right;
  color: forestgreen;
  display: inline-block;
  padding: 0.4em 0.6em;
  text-decoration: none;
}*/

img {
  width: 120px;
  margin-bottom: 1em;
  margin-left: 1em;
}

@media screen and (max-width: 704px) {
  img {
     width: 90px;
     margin-bottom: 0.7em;
     margin-left: 0.7em;
  }
}

footer {
  text-align: center;
  font-size: 1.5em; 
  line-height: 1.3;
  margin-top: 3em;
  margin-bottom: 1em;
}

p {
  margin: 1.5em 0;
}

a {
  color: inherit;
}

button {
  display: block;
  padding: 0;
  border: none;
  background: none;
}

small {
  font-size: 10pt;
  display: block;
  margin-top: 0;
  margin-left: 25px;
  margin-bottom: 10px;
}

.medium {
  font-size: 23.1px;
}

@media screen and (max-width: 704px) {
  .medium {
    font-size: 18px;
  }
}

.large {
  font-size: 35.2px;
}
@media screen and (max-width: 704px) {
  .large {
    font-size: 24.5px;
  }
}

.extralarge {
  font-size: 112px;
  line-height: 1;
}

@media screen and (max-width: 704px) {
  .extralarge {
    /* font-size: 79.2px; */
    font-size: 64px;
    line-height: 1;
  }
}


header {
  text-align: center;
}
header h1 {
  margin: 50px 19.8px 50px;
  font-weight: normal;
  line-height: 1.15;
}
header h1 a {
  text-decoration: none;
}

header nav {
  margin: 0 auto 1em;
  padding: 0 0.09em;
}
@media screen and (max-width: 960px) {
  header nav {
    max-width: 704px;
  }
}
header nav li {
  margin: 0 0.09em 0.6em;
}
header nav li a {
  display: inline-block;
  padding: 0.4em 0.6em;
  text-decoration: none;
}
header nav li a {
  background-color: forestgreen;
  color: white;
}

