header {
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 1em;
  background-color: #f1f7ed;
  border-radius: 1em;
  box-shadow: #91c7b1 0px 0px 10px;
  color: #020202;
  justify-content: space-between;
  margin: 1em;
}
header nav {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  border: 1px solid #91c7b1;
  border-radius: 0.75em;
  text-align: center;
}
header a {
  text-decoration: none;
  color: #020202;
  margin: 0.5em;
  padding: 0.5em;
  border-radius: 0.5em;
  background-color: rgba(250, 161, 65, 0.4392156863);
  width: fit-content;
}

main {
  background-color: #f1f7ed;
  border-radius: 1em;
  box-shadow: #91c7b1 0px 0px 10px;
  color: #020202;
  padding: 1em;
  margin: 1em;
}
main a {
  color: #020202;
}
main section {
  border: #91c7b1 1px solid;
  border-radius: 0.75em;
  padding: 0.5em;
  margin-bottom: 1em;
}
main .aboutme {
  display: flex;
  flex-flow: column;
}
main .aboutme #headshot-img {
  width: 90%;
  max-width: fit-content;
  border-radius: 0.75em;
  align-self: center;
  justify-self: center;
}
main .about__personal {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
main .about__personal__title {
  grid-row: 1/span 1;
}
main #wedding-img {
  width: 90%;
  max-width: fit-content;
  border-radius: 0.75em;
  align-self: center;
  justify-self: center;
  grid-column: 1/-1;
  grid-row: 2/span 1;
}
main .cats {
  grid-column: span 1;
  grid-row: 4/span 1;
  width: 99%;
  max-width: 250px;
  border-radius: 0.75em;
  justify-self: center;
  align-self: center;
}
main #cats-desc {
  grid-row: 5/span 1;
  grid-column: 1/-1;
}
main #wedding-desc {
  grid-row: 3/span 1;
  grid-column: 1/-1;
}
main img {
  min-width: 50px;
}
main .projects__resume__description__link {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-flow: column nowrap;
}
main .projects__resume__description__link a {
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  main .about {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  main .aboutme #headshot-img {
    align-self: baseline;
  }
  main .aboutme p {
    width: 90%;
  }
  main #wedding-img {
    justify-self: baseline;
  }
  main .projects__resume__description__link {
    display: flex;
    align-items: start;
  }
}
footer {
  display: flex;
  align-items: start;
  justify-content: center;
  text-align: center;
  background-color: #f1f7ed;
  color: #020202;
  padding: 0.5em;
  border-radius: 1em;
  box-shadow: #91c7b1 0px 0px 10px;
  margin: 1em;
  position: relative;
}
footer .footer__top {
  position: absolute;
  bottom: 0.25em;
  color: #020202;
  background-color: #f1f7ed;
  border: none;
  text-decoration: underline;
}

* {
  font-family: "Libre Franklin", "Roboto", sans-serif;
}

#resume:target {
  background-color: rgba(250, 161, 65, 0.4392156863);
  width: fit-content;
  text-decoration: underline;
}

/*# sourceMappingURL=styles.css.map */
