* {
  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/decor-bkgrnd.jpg");
  background-repeat: no-repeat;
  background-size: cover auto;
  background-position-x: center;
  background-position-y: top;
  background-color: #555;
}

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: rgb(255, 204, 0);
  display: flex;
  justify-content: center;
  width: 100%;
  height: 80px;
  top: 0px;
  margin-bottom: 0px;
}
.nav {
  list-style: none;
  display: flex;
  align-content: center;
}
.navlink a:link,
.navlink a:visited {
  border-radius: 30px;
  padding: 10px;
  border: medium solid #86b300;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9em;
  font-weight: 500;
  color: #000;
  line-height: 80px;
}

.navlink a:hover,
.navlink a:active {
  color: #ff0000;
  font-weight: 600;
}
.header {
  width: 80%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
.logo {
  padding: 1rem;
  top: 2rem;
  left: 20%;
  width: 35%;
  height: auto;
  font-weight: 700;
}
.logo h1 {
  padding: 10px 5px 10px 5px;
  background: rgb(255, 255, 255, 0.3);
  text-align: center;
  text-transform: lowercase;
  font-size: 1.6rem;
  color: #fff;
}
.logo h2 {
  padding: 10px 5px 10px 5px;
  background: rgb(255, 255, 255, 0.3);
  text-align: center;
  font-size: 1.6rem;
  color: #fff;
}
.logo p {
  padding: 5px;
  background: #e4b20d;
  text-transform: none;
  font-size: 1.6rem;
  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: #fff;
}
.logo a:hover,
.logo a:active {
  color: rgb(250, 10, 10);
}
.about-colleen {
  padding: 1rem;
  top: 2rem;
  right: 20%;
  width: 25%;
  height: auto;
}
.about-colleen h1 {
  padding: 10px 5px 10px 5px;
  background: rgb(255, 255, 255, 0.5);
  letter-spacing: normal;
  text-align: center;
  font-size: 2.1rem;
  color: #fff;
}

#container {
  width: 85%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
#about {
  margin: 0 auto;
  margin-top: 3rem;
  padding: 3rem;
  text-align: left;
  font-weight: 700;
  color: #000;
  width: 70%;
  background-color: rgb(255, 255, 255, 0.6);
}
#about h2 {
  font-size: 2rem;
}
.decor {
  font-size: 2rem;
  margin-top: 2rem;
  text-align: left;
  font-variant: small-caps;
}
#about p {
  font-size: 2rem;
  line-height: 1.5;
  padding: 1.5rem 50px;
}

.centerpic {
  height: auto;
  padding: 1.5rem 27px;
}

#footer {
  width: 100%;
  height: 80px;
  background-color: #617a06;
  color: #000;
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-content: center;
}
.footernav {
  display: flex;
  list-style: none;
  text-decoration: none;
}

.copyright {
  display: block;
  padding-top: 2rem;
  width: 100%;
  text-align: center;
  height: 100px;
  background-color: rgb(255, 204, 0);
  color: #000;
}

@media only screen and (min-width: 2301px) {
  #container {
    width: 55%;
  }
  .header {
    width: 45%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 1991px) {
  #container {
    width: 40%;
  }
  .header {
    width: 40%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 1990px) {
  #container {
    width: 80%;
  }
  .header {
    width: 60%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 1530px) {
  #container {
    width: 60%;
  }
  .header {
    width: 50%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 1450px) {
  #container {
    width: 80%;
  }
  .header {
    width: 70%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 1250px) {
  #container {
    width: 80%;
  }
  .header {
    width: 80%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 1050px) {
  #container {
    width: 95%;
  }
  .header {
    width: 88%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }
  .logo {
    width: 36%;
  }
  .about-colleen {
    width: 33%;
  }
  #about {
    width: 80%;
  }
}

@media only screen and (max-width: 700px) {
  #container {
    width: 95%;
  }
  .header {
    width: 91%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }
  .logo {
    width: 83%;
  }
  .logo h1 {
    padding: 10px 5px 10px 5px;
    background: rgb(255, 255, 255, 0.3);
    text-align: center;
    text-transform: lowercase;
    font-size: 1.6rem;
  }
  .logo h2 {
    padding: 10px 5px 10px 5px;
    background: rgb(255, 255, 255, 0.3);
    text-align: center;
    font-size: 1.4rem;
  }
  .logo p {
    padding: 5px;
    background: #e4b20d;
    text-transform: none;
    font-size: 1.4rem;

    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: #fff;
  }
  .logo a:hover,
  .logo a:active {
    color: rgb(250, 10, 10);
  }
  .about-colleen {
    width: 73%;
  }
  #about {
    width: 80%;
  }
}

@media only screen and (max-width: 541px) {
  #container {
    width: 95%;
  }
  .header {
    width: 91%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }
  .logo {
    width: 83%;
  }
  .about-colleen {
    width: 83%;
  }
  .centerpic {
    height: auto;
    padding: 1.5rem;
    margin-left: 1rem;
  }
  #about {
    width: 90%;
  }
  #about h2 {
    text-align: center;
  }
}

@media only screen and (max-width: 490px) {
  #container {
    width: 99%;
  }
  .header {
    width: 95%;
    display: block;
    margin: 0 auto;
  }
  .logo {
    width: 86%;
    display: block;
    margin: 1rem auto;
  }
  .logo h1 {
    padding: 10px 5px 10px 5px;
    background: rgb(255, 255, 255, 0.3);
    text-align: center;
    text-transform: lowercase;
    font-size: 1.6rem;
    color: #fff;
  }
  .logo h2 {
    padding: 10px 5px 10px 5px;
    background: rgb(255, 255, 255, 0.3);
    text-align: center;
    font-size: 1.4rem;
    color: #fff;
  }
  .logo p {
    padding: 5px;
    background: #e4b20d;
    text-transform: none;
    font-size: 1.4rem;
    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: #fff;
  }
  .logo a:hover,
  .logo a:active {
    color: rgb(250, 10, 10);
  }
  .about-colleen {
    width: 85%;
    display: block;
    margin: 1rem auto;
    background-color: rgba(255, 255, 255, 0.2);
  }
  #about {
    padding: 1rem;
    width: 90%;
    background-color: rgba(255, 255, 255, 0.7);
  }
  #about p {
    display: inline-block;
    font-weight: 600;
    line-height: 1.5;
    font-size: 1.5rem;
    padding-bottom: 15%;
  }
  .about-colleen h1 {
    color: black;
  }
  .centerpic {
    height: auto;
    padding: 1.5rem;
  }
  #about h2 {
    text-align: center;
    padding-top: 2rem;
  }
}
@media only screen and (min-width: 100px) and (max-width: 290px) {
  .header {
    display: block;
    height: auto;
    padding: 1rem;
  }
  .logo {
    width: 92%;
    display: block;
    left: 0;
    margin: 1rem auto;
  }
  .logo h1 {
    padding: 10px 5px 10px 5px;
    background: rgb(255, 255, 255, 0.3);
    text-align: center;
    text-transform: lowercase;
    font-size: 1.6rem;
    color: #fff;
  }
  .logo h2 {
    padding: 10px 5px 10px 5px;
    background: rgb(255, 255, 255, 0.3);
    text-align: center;
    font-size: 1.4rem;
    color: #ff2;
  }
  .logo p {
    padding: 5px;
    background: #e4b20d;
    text-transform: none;
    font-size: 1.4rem;
    color: #fff;
    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: white;
  }
  .logo a:hover,
  .logo a:active {
    color: rgb(250, 10, 10);
  }
  .about-colleen {
    width: 90%;
    display: block;
    right: 0;
    margin: 1rem auto;
  }
  .navlink a:link,
  .navlink a:visited {
    padding: 6px;
    font-size: 0.7em;
  }
  #about {
    padding: 1rem;
    width: 100%;
  }

  #about h3 {
    font-size: 1.5rem;
    line-height: 1.5;
    padding: 0.5rem;
  }
  #about p {
    font-size: 1.5rem;
    line-height: 1.5;
    padding: 0.5rem;
  }
  .centerpic {
    height: auto;
    padding: 0.5rem;
    margin-left: 0.7rem;
  }
  #about p {
    display: inline-block;
    font-weight: 600;
    line-height: 1.5;
    font-size: 1.5rem;
    padding-bottom: 15%;
  }
  #about h2 {
    text-align: center;
    font-size: 2rem;
  }
  .copyright {
    font-size: 0.9rem;
  }
}
