@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

/* variables */
:root {
  --near-white: #f2f2f2;
  --special-yellow: #fdd835;
  --near-black: #1f1f1f;
}

.oswald-400 {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

html {
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  /* font-size: clamp(12px 1.5vw 16px); */
  background-color: white;
}

section {
  clear: both;
  padding: 1em 0;
}

h1 {
  text-align: center;
  font-size: 5em;
  color: white;
  /* padding: 0.2em; */
  margin: 0;
  border-bottom: 12px solid var(--special-yellow);
}

p, ul, ol {
  font-size: 1.1em;
  margin-top: 0;
}

hr {
  border-top: 1px solid grey;
  margin: 2em 10%;
}

img, iframe {
  width: 100%;
}

button {
  cursor: pointer;
  padding: 0.5em;
  margin: 0.5em;
}

header#banner {
  background-image: url('word_on_the_hoof_banner.png');
  background-size: cover;
  background-position: center 10%;
  background-repeat: no-repeat;
  /* darken image for better text readability */
  background-color: rgba(0, 0, 0, 0.3);
  background-blend-mode: darken;
  padding: 14em 6em;
}

#navcontainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  transition: background-color 0.3s ease;
  z-index: 1000;
}

#navcontainer a {
  display: inline-block;
  color: white;
  text-decoration: none;
  margin: 0;
}

#navcontainer > a {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-size: 1.35em;
  padding: 0.7em 0.8em;
}

#navcontainer.scrolled {
  background-image: linear-gradient(to bottom, #d0d0d0, white);
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); */
}

#navcontainer.scrolled a:not(.active) {
  color: var(--near-black);
}

#pageslist {
  float: right;
  list-style-type: none;
  margin: 0;
  padding: 0.6em 0.3em;
  /* overflow: hidden; */
}

#pageslist li {
  /* float: left; */
  display: inline-block;
  margin: 0 0.4em;
}

#pageslist a {
  font-size: 1.2em;
  padding: 0.25em 0.5em;
}

#pageslist a.active {
  background-color: var(--near-black);
}

article {
  background-color: var(--near-white);
  margin-bottom: 3%;
  overflow: hidden;
}

article header h2 {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-size: 2.4em;
  font-weight: normal;
  text-align: center;
  text-transform: uppercase;
  color: var(--near-black);
  margin: 0.4em 0 1em;
  padding: 0 0.6em;
}

article .body {
  line-height: 1.3;
  padding: 0 0.6em;
}

article .body h2 {
  font-size: 1.15em;
  margin: 1em 0;
}

article .body h3 {
  font-size: 1.1em;
  font-weight: normal;
  margin-top: 1em;
  margin-bottom: 0.4em;
}

section h2 {
  text-align:center;
  font-weight: normal;
  padding: 1em;
}


@media only screen and (max-width : 767px) {
  
  h1 {
    font-size: 3em;
  }
  
}

@media only screen and (max-width : 639px) {
  
  #banner {
    padding: 10em 8em;
  }
  
}

@media only screen and (max-width : 499px) {
  
  #banner {
    background-position: 30% 10%;
  }
  
  h1 {
    border-style: none;
  }
  
}