.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: linear-gradient(180deg, rgba(250, 139, 20, 1) 0%, rgba(127, 0, 0, 1) 100%);
}

nav {
  cursor: pointer;
}

h1 {
	color: maroon;
  font-family: "Winky Rough", sans serif;
  font-weight: 900;
  font-size: 3.5em;
  text-align: center;
}

h2 {
  color: maroon;
	font-size: 1.5rem;
  font-family: "Winky Rough", sans serif;
  font-weight: 600;
  text-align: center;
}

h3 {
  color: darkgreen;
  font-family: "Winky Rough", sans serif;
  font-weight: 700;
  font-size: 1.5em;
  text-align: center;
}

p {
  color: maroon;
  font-family: "Winky Rough", sans serif;
  font-weight: 350;
}

ol {
  color: maroon;
	margin: 1em;
	padding: 1em;
  font-family: "Winky Rough", sans serif;
  font-weight: 350;
}

details {
  color: maroon;
  font-family: "Winky Rough", sans serif;
  font-weight: 300;
  cursor: pointer;
}

em {
  color: maroon;
  font-family: "Winky Rough", sans serif;
  font-weight: 350;
}

img {
  max-width: 100%;
}

fig {
  text-align: center;
}

figcaption {
  color: maroon;
  font-family: "Winky Rough", sans serif;
  font-weight: 300;
  font-size: 0.75em;
}

label {
  color: maroon;
  font-family: "Winky Rough", sans serif;
}

#nav {
  width: 100%;
  height: 100%;
  background-color: #ffbf00;
  position: sticky;
  display: flex;
  margin-top: 2em;
  margin-bottom: 2em;
  justify-content: space-evenly;
  font-family: "Winky Rough", sans serif;
  font-weight: 400;
}
#nav div {
  flex-shrink: 1;
  padding-left: 5px;
  padding-right: 5px;
}
#nav a {
  flex-grow: 1;
  background-color: #ffbf00;
  padding: 0.5em 0.5em;
  text-decoration: none;
  font-size: 0.9em;
  font-family: "Winky Rough", sans serif;
  color: maroon;
}
#navitems {
  display: flex;
  align-items: center;
}
#navitems a {
  display: block;
  flex-basis: 0;
  box-sizing: border box;
  width: 100%;
  text-align: center;
}
#navitems a:hover {
  background-color: #ff8e14;
}
#mobile {
  display: none;
  opacity: 0;
}
  .hide-checkbox {
    display: none;
    opacity: 0;
    position: absolute;
  }

#wip {
  border: 1px white, solid;
  background: #ffb300;
}

#mcw {
  border: 1px white, solid;
  background: #ffbc00;
}

#rw {
  border: 1px white, solid;
  background: #ffc500;
}

#fc {
  border: 1px white, solid;
  background: #ffcd00;
}

#payment {
  border: 1px white, solid;
  background: #ffd600;
}

#contact {
  border: 1px white, solid;
  background: #ffdf00;
}

#contactingvin label {
  width: 100%;
}
#contactingvin input,
#contactingvin textarea {
  margin-top: 1em;
  margin-bottom: 1em;
  width: 100%;
  font-size: 1.25em;
}
#contactingvin input {
  height: 1.25em;
}

#vg input[type="checkbox"] {
	-webkit-appearance: none;
  appearance: none;
  position: relative;
  width: 1em;
  height: 1em;
  border: 1px black solid;
  vertical-align: -3px;
  color: black;
}
#vg input[type="checkbox"]:before {
	content: "✔";
  position: absolute;
  font-size: 1.25em;
  right: -0.2em;
  top: -0.6em;
  visibility: hidden;
}
#vg input[type="checkbox"]:checked:before {
	visibility: visible;
}

.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.small-submit {
  padding: 25px;
  margin: 50px;
  font-size: 14px;
  color: white;
  background-color: darkgreen;
  border-radius: 15% 15% 15% 15%;
  font-family: "Winky Rough", sans serif;
 
}

.small-submit:hover {
  background-color: lightgreen;
  color: gray;
}

.small-reset {
  padding: 25px;
  margin: 50px;
  font-size: 14px;
  color: white;
  background-color: darkred;
  border-radius: 15% 15% 15% 15%;
  font-family: "Winky Rough", sans serif;
}

.small-reset:hover {
  background-color: pink;
  color: gray;
}

.copyright {
  color: white;
  font-size: 0.75rem;
  text-align: center;
}

@media screen and (min-width: 576px) {
   
  nav {
    display: none;
    justify-content: space-between;
    position: relative;
} 
    #navitems {
    flex-direction: row;
    justify-content: flex-start;
    align-content: flex-start;
    position: relative;
}
  
    	main {
  	display: flex;
      flex-wrap: wrap;
        flex-flow: wrap;
        gap: row-gap;
        justify-content: space-evenly;
  }
}

@media screen and (min-width: 768px) {

    nav {
    display: none;
      justify-content: space-between;
      position: relative;
}
  
    #navitems {
    flex-direction: row;
    justify-content: flex-start;
      align-content: flex-start;
    position: relative;
}
  
    	main {
  	display: flex;
      flex-wrap: wrap;
        flex-flow: wrap;
        gap: row-gap;
        justify-content: space-evenly;
  }
}