* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #444;
  /* Only works if there is nothing absolutely positioned in relation to body */
  overflow-x: hidden;
  font-family: "Source Sans Pro", sans-serif;
  width: 100%;
  background-image: url(../images/paintbkg.jpg);
  background-size: contain;
  background-repeat: repeat-x;
  background-position-x: center;
  background-position-y: top;
  background-color: rgb(137, 138, 141);
}

html {
  /* font-size: 10px; */

  /* 10px / 16px = 0.625 = 62.5% */
  /* Percentage of user's browser font-size setting */
  font-size: 62.5%;
  overflow-x: hidden;
}
.navbar {
  background: #f9673f;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 80px;
  top: 0px;
  margin-bottom: 0px;
}
.nav {
  list-style: none;
  display: flex;
  align-content: center;
  gap: 1.2rem;
}
.navlink a:link,
.navlink a:visited {
  border-radius: 30px;
  padding: 10px;
  border: medium solid #555;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
  line-height: 80px;
}

.navlink a:hover,
.navlink a:active {
  color: #fff;
}
.header {
  width: 80%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.4);
}
.logo {
  padding: 1rem;
  top: 2rem;
  left: 20%;
  width: 35%;
  height: auto;
}
.logo h1 {
  padding: 10px 5px 10px 5px;
  background: rgb(255, 255, 255, 0.3);
  text-align: center;
  text-transform: lowercase;
  font-size: 2.6rem;
  color: #000;
}
.logo h2 {
  padding: 10px 5px 10px 5px;
  background: rgb(255, 255, 255, 0.3);
  text-align: center;
  font-size: 2.4rem;
  color: #000;
}
.logo p {
  padding: 5px;
  background: #f9673f;
  text-transform: none;
  font-size: 2.1rem;
  color: #000;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  font-weight: 600;
}
.logo a:link,
.logo a:visited {
  border: none;
  background: none;
  text-decoration: none;
  color: #000;
}
.logo a:hover,
.logo a:active {
  color: rgb(250, 10, 10);
}
.tagline {
  padding: 1rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
  right: 20%;
  width: 35%;
  height: auto;
}
.tagline h1 {
  padding: 1rem;
  line-height: 2;
  margin: 1rem;
  letter-spacing: 0.1px;
  text-align: center;
  font-size: 2.1rem;
  color: #000;
  background-color: #f9673f;
}
.tagline h2 {
  margin: 2rem;
  padding: 1rem;
  letter-spacing: normal;
  text-align: center;
  font-size: 2rem;
  line-height: 2;
  color: #000;
  background-color: #f9673f;
}
.container {
  width: 80%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  margin-top: 2rem;
  background-color: rgb(255, 255, 255, 0.7);
}
#about {
  margin: 0 auto;
  text-align: left;
  color: #000;
  width: 100%;
}
#about h1 {
  font-size: 2.7rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  letter-spacing: 0.4px;
}
#about h3 {
  margin: 3rem auto;
  font-size: 1.7rem;
  line-height: 2;
  letter-spacing: 0.6px;
}
#about p {
  font-weight: 600;
  line-height: 2;
  font-size: 2rem;
  margin: 3rem auto;
}

.center {
  text-align: center;
}

#about a:link,
#about a:visited {
  border: none;
  background: none;
  text-decoration: none;
  color: rgb(250, 10, 10);
}
#about a:hover,
#about a:active {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.pe-image {
  max-width: 70%;
  max-height: 70%;
  margin: 0 auto;
}
.pe-image img {
  width: 100%;
  height: 100%;
}
.button {
  margin: 0 2rem;
  padding: 1rem 2rem;
  background-color: #f9673f;
  color: black;
  font-size: 1.5rem;
  border: 1px solid white;
  text-decoration: none;
}
#footer {
  width: 100%;
  height: 80px;
  background-color: #617a06;
  color: #000;
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: center;
}
.footernav {
  display: flex;
  list-style: none;
  text-decoration: none;
}

.copyright {
  display: block;
  width: 100%;
  text-align: center;
  height: 30px;
  background-color: #617a06;
  color: #000;
}
@media only screen and (min-width: 1991px) {
  .navlink a:link,
  .navlink a:visited {
    border-radius: 30px;
    padding: 1rem;
    font-size: 1.5rem;
  }
  .header {
    width: 50%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }

  .container {
    width: 40%;
  }

  #about {
    margin: 0 auto;
    padding: 3rem;
    font-size: 2.4rem;
    text-align: left;
    color: #000;
    width: 80%;
  }
}

/* @media only screen and (max-width: 2100px) {
   
  #about {
    margin: 0 auto;
    padding: 3rem;
    font-size: 1.4em;
    text-align: left;
    color: #000;
    width: 66%;
  }
} */

@media only screen and (max-width: 1990px) {
  .header {
    width: 60%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }

  .container {
    width: 60%;
  }
  .logo h1 {
    font-size: 2rem;
  }
  .logo h2 {
    font-size: 2rem;
  }
  .logo p {
    font-size: 2rem;
  }
  #about {
    margin: 0 auto;
    padding: 3rem;
    font-size: 1.5rem;
    text-align: left;
    color: #000;
    width: 80%;
  }
}
@media only screen and (max-width: 1560px) {
  .header {
    width: 80%;
  }
  #about {
    padding: 3rem 1rem;
    width: 80%;
  }
  #about h1 {
    padding-left: 1rem;
  }
  #about h3 {
    padding-left: 1rem;
  }
  #about p {
    padding-left: 1rem;
  }
  .logo {
    width: 40%;
  }
  .logo h1 {
    font-size: 2.2rem;
  }
  .logo h2 {
    font-size: 2rem;
  }
  .logo p {
    font-size: 1.9rem;
  }
}
/* @media only screen and (max-width: 1450px) {
  .container {
    width: 80%;
  }
  .header {
    width: 70%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }
  #about {
    margin: 0 auto;
    padding: 3rem;
    font-size: 1.4em;
    text-align: left;
    color: #000;
    width: 70%;
  }
} */
@media only screen and (max-width: 1250px) {
  .header {
    width: 90%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }
  .container {
    width: 80%;
  }

  #about {
    margin: 0 auto;
    padding: 3rem 1rem;

    font-size: 1.4em;
    text-align: left;
    color: #000;
    width: 60%;
  }
}
@media only screen and (max-width: 1075px) {
  .container {
    width: 85%;
  }
  .header {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12rem;
  }
  .logo {
    width: 33%;
  }
  .tagline {
    width: 33%;
  }
  #about {
    margin: 0 auto;
    padding: 3rem 2rem;
    font-size: 1.2rem;
    text-align: left;
    color: #000;
    width: 60%;
  }
}
@media only screen and (max-width: 900px) {
  /* #container {
    width: 95%;
  }
  .header {
    width: 91%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  } */
  .logo {
    width: 43%;
  }
  .logo h1 {
    font-size: 2rem;
  }
  .logo h2 {
    font-size: 1.9rem;
  }
  .logo p {
    font-size: 1.9rem;
  }
  .tagline {
    width: 43%;
  }
  #about {
    margin: 0 auto;
    padding: 3rem;
    font-size: 1.5rem;
    text-align: left;
    color: #000;
    width: 100%;
  }
}
@media only screen and (max-width: 725px) {
  .header {
    gap: 6rem;
  }
  .logo {
    width: 43%;
  }
  .logo h1 {
    font-size: 2rem;
  }
  .logo h2 {
    font-size: 1.9rem;
  }
  .logo p {
    font-size: 1.9rem;
  }
  .tagline {
    width: 43%;
  }
  #about {
    margin: 0 auto;
    padding: 3rem;
    font-size: 1.5rem;
    text-align: left;
    color: #000;
    width: 94%;
  }
  #about h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    letter-spacing: 0.4px;
  }
  #about h3 {
    margin: 3rem auto;
    font-size: 1.7rem;
    line-height: 2;
    letter-spacing: 0.6px;
  }
  #about p {
    font-weight: 600;
    line-height: 2;
    font-size: 2rem;
    margin: 3rem auto;
  }
}

@media only screen and (max-width: 540px) {
  .nav {
    display: flex;
    gap: 1rem;
  }
  .header {
    width: 100%;
    display: block;
    margin: 0 auto;
  }

  .logo {
    width: 85%;
    display: block;
    margin: 1rem auto;
  }
  .logo h1 {
    font-size: 1.5rem;
  }
  .logo h2 {
    font-size: 1.5rem;
  }
  .logo p {
    font-size: 1.4rem;
  }
  .tagline {
    width: 110%;
    display: block;
    margin: 0;
    margin-left: -5%;
  }
  .tagline h1 {
    padding: 1rem;
    line-height: 1.5;
    letter-spacing: 0.5px;
    font-size: 1.5rem;
    display: block;
    width: 110%;
    margin-left: -5%;
  }
  .tagline h2 {
    padding: 0.6rem;
    letter-spacing: 0.5px;
    display: block;
    font-size: 1.5rem;
    line-height: 1.5;
    width: 110%;
    margin-left: -5%;
  }
  .container {
    width: 100%;
  }
  #about {
    margin: 0 auto;
    padding: 1rem;
    font-size: 1.5rem;
    text-align: left;
    color: #000;
    width: 90%;
  }
  #about h1 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
    letter-spacing: 0.6px;
  }
  #about h3 {
    margin: 3rem auto;
    font-size: 1.5rem;
    line-height: 1.3;
    letter-spacing: 0.6px;
  }
  #about p {
    font-weight: 600;
    line-height: 1.3;
    font-size: 1.5rem;
    margin: 1rem auto;
  }
}
@media only screen and (max-width: 540px) {
  .navbar {
    background: none;
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
    top: 0px;
    margin-bottom: 0px;
  }
  .nav {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    height: auto;
    width: 90%;
    margin: 0 auto;
  }
  .navlink a:link,
  .navlink a:visited {
    border-radius: 30px;
    display: block;
    background-color: rgba(249, 103, 63, 0.5);
    padding: 10px;
    border: medium solid #555;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    line-height: 1;
    padding-left: 20%;
  }
  .logo {
    width: 85%;
    display: block;
    margin: 2rem auto;
  }

  .tagline {
    width: 100%;
    margin: 0 auto;
    height: auto;
    padding: 1rem;
  }
  .tagline h1 {
    letter-spacing: normal;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.5;
    color: #000;
    background-color: #f9673f;
  }
  .tagline h2 {
    display: block;
    width: 110%;
    letter-spacing: normal;

    text-align: center;
    font-size: 1.5rem;
    line-height: 1.5;
    color: #000;
    background-color: #f9673f;
    margin: 1rem;
    margin-left: -5%;
  }
  #about h1 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: 0.6px;
  }
  #about h3 {
    margin: 3rem auto;
    font-size: 1.2rem;
    line-height: 1.1;
    letter-spacing: 0.6px;
  }

  #footer {
    width: 100%;
    height: auto;
    background: none;
    color: #000;
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
  }
  .footernav {
    display: flex;
    list-style: none;
    text-decoration: none;
    flex-direction: column;
  }
  .copyright {
    display: block;
    width: 100%;
    text-align: center;
    height: 100px;
    background: none;
    color: #000;
  }
}
@media only screen and (min-width: 100px) and (max-width: 290px) {
  .container {
    width: 100%;
  }
  .masthead {
    width: 100%;
    display: block;
    padding-top: 5rem;
  }
  .logo {
    width: 100%;
    display: block;
    left: 0;
    margin: 1rem auto;
  }
  .tagline {
    width: 90%;
    display: block;
    right: 0;
    margin: 1rem auto;
  }
  .tagline-text {
    width: 100%;
    padding: 2rem;
    margin-top: 25px;
    height: auto;
    font-size: 2.1rem;
    line-height: 29px;
    margin-right: auto;
  }
  .navlink a:link,
  .navlink a:visited {
    padding: 6px;
    font-size: 0.7em;
  }
  #about {
    padding: 1.5rem;
  }
  #about p {
    display: inline-block;
    font-weight: 600;
    line-height: 1.5;
    font-size: 1.5rem;
    padding-bottom: 15%;
  }
}
