.sr-only {
	position: absolute;
  left: -10000px;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.sr-only:focus {
	position: static;
  width: auto;
  height: auto;
}

body {
  background: gold;
}

nav {
    font-family: "Stack Sans Headline", sans serif;
}

#nav {
  width: 100%;
  background-color: gold;
  margin-bottom: 1em;
  justify-items: center;
  align-items: center;
}

#navitems {
  display: none;
}

#navitems a {
  flex-grow: 1;
  flex-basis: 0;
  padding: 5px;
  text-decoration: none;
  text-align: center;
  background-color: gold;
  color: #5A0000;
  box-sizing: border-box;
  display: block;
  width: 100%;  
}

#navitems hover {
  background-color: black;
  border: 2px black solid;
  color: black;
}

#nav label {
  display: inline-block;
  color: black;
  background: gold;
  font-style: normal;
  font-size: 1.5em;
  padding: 5px;
  cursor: pointer;
  justify-items: center;
  align-items: center;
}

#nav input:checked ~ #navitems {
  display: block;
}

#mobile {
  display: none;
}

h1 {
  color: #5A0000;
  font-family: "Stack Sans Headline", sans serif;
  text-align: center;
  text-decoration: underline;
  font-size: 3em;
  margin: 1rem;
}

h2 {
  color: #5A0000;
  font-family: "Stack Sans Headline", sans serif;
  text-align: center;
  margin: 1rem;
  font-size: 1.5em;
}

p {
  color: #5A0000;
  font-family: "Stack Sans Headline", sans serif;
  text-align: center;
  margin: 0.5rem;
}

ul {
  color: #5A0000;
  font-family: "Stack Sans Headline", sans serif;
  font-size: .9em;
}

a {
  color: #0000D9;
}

ol {
  color: #5A0000;
  font-family: "Stack Sans Headline", sans serif;
  font-size: .9em;
}

img {
  max-width: 100%;
}

main {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  flex-flow: column;
  justify-content: center;
}

figure {
  text-align: center;
}

.copyright {
  font-family: "Stack Sans Headline", sans serif;
  color: #5A0000;
  text-align: center;
  font-size: .75em;
}

@media screen and (min-width: 576px) {
  main {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  flex-flow: column;
  justify-content: center;
  }
 #certs {
   background-color: #FFB600;
  }
   #drp {
   background-color: orange;
  }
   #wp {
   background-color: darkorange;
  }

.mobile-menu {
  display: block;
}
#mobile:checked ~ navitems {
  display: flex;
}
}

@media screen and (min-width: 768px) {
    main {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-content: flex-start;
      box-sizing: border-box;
      gap: 2% 2%;
  }
 #certs {
   background-color: #FFB600;
  }
   #drp {
   background-color: orange;
  }
   #wp {
   background-color: darkorange;
  }

#navitems {
  display: none;
  }
.mobile-menu {
  display: block;
}
#mobile:checked ~ navitems {
  display: flex;
}
}