::-moz-selection {
  background: #f7f29c; /* WebKit/Blink Browsers */
}

::selection {
  background: #f7f29c; /* WebKit/Blink Browsers */
}

body {
  max-width: 1400px;
  margin: auto;
  overflow-x: hidden;
}

.body-wrapper {
  padding: 0 1.5em 1.5em 1.5em;
  overflow: hidden;
}

img {
  width: 100%;
  display: block;
}

video {
  width: 100%;
}

.drop-shadow {
  filter: drop-shadow(0rem 0.3rem 0.4rem rgba(0, 0, 0, 0.2));
}

.space {
  padding-top: 1em;
}

.masonry-space {
  padding-top: 6px;
}

.no-scroll {
  overflow: hidden;
}

* {
  scroll-behavior: smooth;
}

h1 {
  font-family: Poppins, sans-serif;
  font-size: 3.5em;
  font-weight: 700;
  line-height: 1em;
  transition: all 0.3s;
}
h1 em {
  font-style: normal;
}
@media screen and (min-width: 800px) {
  h1 {
    font-size: 5em;
  }
}

h2 {
  font-family: Lato, Poppins, sans-serif;
  font-size: 2em;
  font-weight: 400;
}
h2 em {
  font-style: normal;
}

h3 {
  font-family: Poppins, Lato, sans-serif;
  font-size: 2em;
  font-weight: 700;
  text-align: center;
}
h3 em {
  font-style: normal;
}

h4 {
  font-family: Poppins, Lato, sans-serif;
  font-size: 1.2em;
  font-weight: 700;
  text-align: center;
}
h4 em {
  font-style: normal;
}

h5 {
  font-family: Poppins, Lato, sans-serif;
  font-size: 2em;
  line-height: 1em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5em;
}
h5 em {
  font-style: normal;
}

h6 {
  font-family: Poppins, Lato, sans-serif;
  font-size: 1em;
  font-weight: 200;
  font-style: italic;
  text-align: center;
}
h6 em {
  font-style: normal;
}

p {
  font-family: Lato, Poppins, sans-serif;
  font-size: 1em;
}
p em {
  font-style: normal;
}

em {
  color: #f59196;
}

a {
  text-decoration: none;
}

.footnote {
  font-size: 0.7em;
}
.footnote p {
  font-style: italic;
}

.site-header {
  padding-left: 1em;
  padding-right: 1em;
  transition: all 0.3s;
  opacity: 1;
  pointer-events: all;
  margin: auto;
}
@media screen and (max-width: 800px) {
  .site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    z-index: 2;
    transition: all 0.3s;
  }
}
.site-header__wrapper {
  display: flex;
  justify-content: space-between;
  padding: 1em;
}
.site-header__logo {
  width: 100%;
  align-self: center;
}
.site-header__logo img {
  width: 100%;
  max-width: 50px;
}
.site-header__menu-trigger {
  margin: 1em 0 1em 2em;
  width: 5em;
}
@media screen and (min-width: 800px) {
  .site-header__menu-trigger {
    display: none;
  }
}
.site-header__menu-trigger svg {
  display: block;
  width: 100%;
  height: auto;
}
.site-header__container {
  margin: auto;
}
.site-header__navigation {
  height: 50px;
  transition: all 0.3s;
  text-align: right;
  margin: auto;
  right: 0;
  opacity: 0;
  vertical-align: middle;
  overflow: hidden;
}
.site-header__navigation a {
  color: #8a1f5c;
  font-weight: 500;
  font-family: Poppins, sans-serif;
  text-decoration: none;
  margin: 0 0 0 20px;
  transition: all 0.3s;
}
@media screen and (min-width: 800px) {
  .site-header__navigation {
    max-height: -moz-fit-content;
    max-height: fit-content;
    opacity: 1;
  }
  .site-header__navigation ul {
    display: flex;
  }
  .site-header__navigation a:hover {
    background-color: #f7f29c;
  }
}

.toggler-icon {
  width: 40px;
  height: 5px;
  background-color: #f59196;
  display: block;
  transition: all 0.2s;
}

/* Adds Space between the lines */
.middle-bar {
  margin-top: 6px;
  margin-bottom: 6px;
}

/* State when navbar is opened (START) */
.show-menu .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}

.show-menu .middle-bar {
  opacity: 0;
  filter: alpha(opacity=0);
}

.show-menu .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}

.show-menu .site-header {
  background-color: #f7f29c;
}
@media screen and (min-width: 800px) {
  .show-menu .site-header {
    background-color: white;
  }
}

.show-menu .site-header__navigation {
  height: 100px;
  opacity: 100;
  text-align: right;
  margin: auto;
  right: 0;
}

.body-wrapper {
  margin: auto;
}

.floating {
  animation-name: floating;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  margin-left: 30px;
  margin-top: 5px;
}

@keyframes floating {
  0% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, 10px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
@keyframes floating-small {
  0% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, 10px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
@keyframes floating-big {
  0% {
    transform: translate(0, 15px);
  }
  50% {
    transform: translate(0, 0px);
  }
  100% {
    transform: translate(0, 15px);
  }
}
.introduction {
  padding: 18vh 0 2em 0;
  transition: all 0.3s;
}
@media screen and (min-width: 800px) {
  .introduction {
    display: flex;
    justify-content: space-between;
    gap: 3em;
  }
}
.introduction-wrapper {
  margin-bottom: 3vh;
}
.introduction__blurb {
  max-width: 700px;
}
@media screen and (min-width: 800px) {
  .introduction__blurb {
    width: 60vw;
  }
}
.introduction-button {
  text-align: center;
  margin: 0 0.5em 0.5em 0;
  background-color: #f7f29c;
  color: #f59196;
  font-family: Poppins, Lato, sans-serif;
  padding: 0.7em 1em;
  font-size: 1em;
  width: 100%;
  transition: all 0.3s;
}
@media screen and (min-width: 800px) {
  .introduction-button {
    width: auto;
  }
}
.introduction-button:hover {
  background-color: #8a1f5c;
  color: #f59196;
}
.introduction-button-2 {
  background-color: #f59196;
  color: #f7f29c;
  font-family: Poppins, Lato, sans-serif;
  font-size: 1em;
  padding: 0.7em 1em;
  width: 100%;
  text-align: center;
  transition: all 0.3s;
}
@media screen and (min-width: 800px) {
  .introduction-button-2 {
    width: auto;
    margin: 0 0.5em 0.5em 0;
  }
}
.introduction-button-2:hover {
  background-color: #8a1f5c;
  color: #f59196;
}
.introduction__profile-pic {
  width: 300px;
  margin: auto;
  margin-top: 2em;
  padding: 1em;
  position: relative;
  transition: all 0.3s;
}
@media screen and (min-width: 800px) {
  .introduction__profile-pic {
    margin-top: 0;
  }
}
.introduction__profile-pic img {
  transition: all 0.3s;
  border-radius: 200px;
  animation: floating-big 10s ease-in-out infinite;
}
.introduction__profile-pic-circle1 {
  position: absolute;
  left: -55px;
  top: 10px;
  width: 150px;
  height: 150px;
  z-index: 1;
  border-radius: 150px;
  background-color: #f7f29c;
  animation: floating 3s ease-in-out infinite;
}
.introduction__profile-pic-circle2 {
  position: absolute;
  right: -60px;
  z-index: -1;
  bottom: -10px;
  width: 190px;
  height: 190px;
  border-radius: 190px;
  background-color: #f59196;
  animation: floating-big 4s ease-in-out infinite;
}
.introduction__profile-pic-circle3 {
  position: absolute;
  right: -10px;
  top: 80px;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  background-color: #8a1f5c;
  animation: floating-small 5s ease-in-out infinite;
}
.introduction__profile-pic-circle3:hover {
  transform: scale(1.1);
}

.start-arrow {
  position: relative;
  text-align: center;
  padding: 2em;
}
.start-arrow a {
  text-decoration: none;
  color: #f59196;
}

.wrapper {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.project__wrapper {
  padding-top: 3em;
}
.project__links {
  margin-top: 1em;
}
@media screen and (min-width: 600px) {
  .project__links {
    display: inline-grid;
    grid-template-columns: auto auto auto;
    gap: 6px;
  }
}
.project__button {
  margin-top: 0.5em;
}
.project__button img {
  transition: all 0.3s;
}
.project__button:hover img {
  opacity: 50%;
}
@media screen and (min-width: 600px) {
  .project__button {
    margin-top: 0em;
  }
}
.project__modal {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.project__modal:not(:target) {
  visibility: hidden;
  opacity: 0;
}
@media screen and (min-width: 800px) {
  .project__modal {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .project__modal:not(:target) {
    visibility: hidden;
    opacity: 0;
  }
}
.project__modal-background {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.project__modal-window {
  position: fixed;
  top: 0;
  max-width: 900px;
  background-color: white;
  padding: 4em 2em;
  height: 100%;
  overflow-y: auto;
}
@media screen and (min-width: 800px) {
  .project__modal-window {
    position: relative;
    height: auto;
    max-height: 90%;
  }
}
.project__modal-close {
  position: absolute;
  color: #8a1f5c;
  top: 0.5vh;
  right: 3vw;
  text-decoration: none;
  font-size: 3em;
}
@media screen and (min-width: 800px) {
  .project__modal-close {
    position: absolute;
    top: 0.5vh;
    right: 1vw;
    text-decoration: none;
    font-size: 2em;
  }
}
@media screen and (min-width: 800px) {
  .project__modal-content {
    display: flex;
  }
}
.project__modal-header {
  padding-bottom: 1em;
  margin-top: 2em;
  margin: auto;
  max-width: 500px;
}
@media screen and (min-width: 800px) {
  .project__modal-header {
    margin-top: 0;
  }
}
.project__modal-image {
  padding: 1em;
  filter: drop-shadow(0rem 0.3rem 0.4rem rgba(0, 0, 0, 0.3));
}
@media screen and (min-width: 800px) {
  .project__modal-image {
    width: 200%;
  }
}
.project__modal-blurb {
  padding: 1em;
  line-height: 1.3em;
}
.project__modal-blurb a {
  text-decoration: none;
}
.project__modal-button {
  text-align: center;
  margin-top: 2em;
  background-color: #8a1f5c;
  color: #f7f29c;
  font-family: Poppins, Lato, sans-serif;
  width: 100%;
  padding: 0.7em 1em;
  font-size: 1.5em;
}
@media screen and (min-width: 800px) {
  .project__modal-button {
    margin-top: 1em;
    padding: 0.5em 1em;
    transition: all 0.5s;
    width: auto;
    font-size: 1em;
  }
  .project__modal-button:hover {
    background-color: #f59196;
  }
}
.project__modal-list {
  font-family: Lato, Poppins, sans-serif;
  padding: 1em;
  list-style: outside;
}

.back-to-portfolio {
  font-family: Poppins, Lato, sans-serif;
  color: #8a1f5c;
  visibility: hidden;
}
@media screen and (min-width: 1000px) {
  .back-to-portfolio {
    visibility: visible;
    padding-left: 1em;
    margin-top: 2em;
    position: sticky;
    top: 2em;
  }
}
.back-to-portfolio a {
  text-decoration: none;
}

.page-header {
  padding-bottom: 1em;
  max-width: 600px;
  margin: auto;
  margin-top: 9em;
}
@media screen and (min-width: 800px) {
  .page-header {
    margin-top: 0;
  }
}

.page-menu {
  display: none;
}
@media screen and (min-width: 1000px) {
  .page-menu {
    width: 20%;
    display: block;
    font-family: Poppins, Lato, sans-serif;
    position: sticky;
    height: 0;
    top: 25%;
  }
  .page-menu__list {
    color: #f59196;
    padding-left: 1em;
  }
  .page-menu__list li {
    margin-bottom: 2em;
  }
  .page-menu__list li :last-child {
    margin-bottom: none;
  }
  .page-menu__list li a {
    text-decoration: none;
  }
  .page-menu__list li a.active {
    background-color: #f7f29c;
  }
}

.page-content {
  max-width: 600px;
  margin: auto;
}
.page-image {
  padding: 1em;
}

.page-blurb {
  padding: 1em;
  line-height: 1.3em;
}
.page-blurb__section {
  margin-bottom: 1em;
}
.page-blurb a {
  text-decoration: none;
}
.page-blurb__subheader {
  text-align: left;
  padding-top: 1em;
  margin-bottom: 0.5em;
}
.page-blurb__list {
  font-family: Lato, Poppins, sans-serif;
  padding: 1em;
  list-style: outside;
}
.page-blurb__list-nest {
  font-family: Lato, Poppins, sans-serif;
  padding-left: 1em;
  list-style: outside;
  list-style-type: circle;
}
.page-blurb__image-wrapper-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 1em;
}
.page-blurb__image-wrapper-row-flex {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 1em;
}

.other-projects__wrapper {
  margin-top: 2em;
  padding: 1em;
}
.other-projects__divider {
  text-align: center;
  margin: 1em;
}

footer {
  margin-top: 2em;
  margin-bottom: 1em;
  padding-left: 1em;
  padding-right: 1em;
  font-size: 0.8em;
  text-align: center;
}
footer p {
  font-family: Poppins, Lato, sans-serif;
}/*# sourceMappingURL=styles.css.map */