body {
  font-family: "Georama", sans-serif;
  margin: auto;
  overflow-x: hidden;
  text-align: center;
  --green: #44a2a2;
  --green-hover: #0c6f72;
  --lightpurple: #eed3ef;
  --textblack: #40514e;
}

h1 {
  font-family: "Georama", serif;
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  color: var(--green);
  font-family: "Courgette";
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  color: var(--green);
  font-family: "Josefin Slab";
}

a {
  text-decoration: none;
}

p {
  line-height: 2;
}

.text-bold {
  font-weight: bold;
}

.lazy-img {
  filter: blur(20px);
}

.entry__page {
  background-color: black;
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 10;
  transition: background-color 1s, opacity 1s;
}
.entry__shape {
  height: 100%;
  position: relative;
  width: calc(50% - 57px);
  transition: width 2s;
}
.entry__shape--1:after, .entry__shape--2:before {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
}
.entry__shape--1 {
  float: left;
  background: var(--lightpurple);
}
.entry__shape--1:after {
  left: 100%;
  border-top: 100vh solid var(--lightpurple);
  border-right: 100px solid transparent;
}
.entry__shape--2 {
  float: right;
  background: var(--green);
}
.entry__shape--2:before {
  right: 100%;
  border-bottom: 100vh solid var(--green);
  border-left: 100px solid transparent;
}
.entry__container {
  position: absolute;
  transition: opacity 1s;
  width: 100%;
}
.entry__bio {
  align-items: center;
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 767px) {
  .entry__bio {
    flex-direction: column;
    margin-top: 15vh;
  }
}
@media screen and (min-width: 768px) {
  .entry__bio {
    margin-top: 25vh;
  }
}
.entry__bio-section {
  min-width: 40vw;
}
@media screen and (max-width: 767px) {
  .entry__bio-section--1 {
    margin-right: 60%;
    margin-bottom: -2%;
  }
}
@media screen and (max-width: 767px) {
  .entry__bio-section--2 {
    margin-left: 60%;
    margin-top: -2%;
  }
}
.entry__header {
  margin: 0 auto;
  width: 85%;
}
@media screen and (max-width: 767px) {
  .entry__header {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .entry__header {
    font-size: 4.5rem;
  }
}
.entry__header--bio-1 {
  color: var(--green);
}
.entry__header--bio-2 {
  color: var(--lightpurple);
}
.entry__subheader {
  margin: 0 auto;
  width: 90%;
}
@media screen and (max-width: 767px) {
  .entry__subheader {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .entry__subheader {
    font-size: 2rem;
  }
}
.entry__subheader--bio-1 {
  color: var(--green);
}
.entry__subheader--bio-2 {
  color: var(--lightpurple);
}
.entry__avatar {
  border: 4px solid var(--textblack);
  border-radius: 50%;
  max-width: 150px;
}
@media screen and (max-width: 767px) {
  .entry__avatar {
    width: 40vw;
  }
}
.entry__button {
  border: 2px solid var(--textblack);
  border-radius: 50px;
  font-family: "Courgette";
  font-size: 2rem;
  margin: 2rem;
  cursor: pointer;
  width: 10rem;
}

.navbar {
  background-color: var(--green);
  font-family: "Josefin Slab";
}
.navbar-brand {
  color: white;
  margin: 0 auto;
  padding: 0.5rem;
}
@media screen and (max-width: 767px) {
  .navbar-brand {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .navbar-brand {
    font-size: 2rem;
  }
}

.header {
  display: flex;
}
@media screen and (max-width: 767px) {
  .header {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .header {
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .header__container {
    width: 50%;
  }
}
.header__container--hero {
  background: url("../assets/images/hero.png");
  background-size: cover;
  background-position: center;
}
@supports (mix-blend-mode: multiply) {
  .header__container--hero {
    position: relative;
    overflow: hidden;
    background-color: #44a2a2;
    background-blend-mode: screen;
  }
  .header__container--hero:before, .header__container--hero:after {
    display: block;
    content: "";
    position: absolute;
    top: 7.5px;
    left: 7.5px;
    right: 7.5px;
    bottom: 7.5px;
    background: inherit;
    mix-blend-mode: multiply;
    transform: scale(1.01);
  }
}
@media screen and (min-width: 768px) {
  .header__container--before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header__container--after {
    display: none;
  }
}
.header__container--bio {
  align-items: center;
  background-color: var(--lightpurple);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}
.header__socials {
  margin: 1.5rem;
}
.header__social-link {
  margin: 0 0.5rem;
}
.header__social-icon {
  width: 2rem;
}
.header__description {
  color: var(--textblack);
  font-family: "Georama";
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .header__description {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1280px) {
  .header__description {
    font-size: 1.25rem;
    width: 50%;
  }
}
.header__avatar {
  border-radius: 50%;
  border: solid 3px black;
}
@media screen and (max-width: 767px) {
  .header__avatar {
    width: 10rem;
  }
}
@media screen and (min-width: 768px) {
  .header__avatar {
    width: 13vw;
  }
}

.sections-nav {
  align-items: center;
  background: var(--green);
  display: flex;
  justify-content: center;
}
.sections-nav__link {
  color: white;
  font-family: "Josefin Slab";
  font-weight: bold;
  margin: 0.75rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .sections-nav__link {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .sections-nav__link {
    font-size: 2rem;
  }
}
.sections-nav__link:hover {
  color: var(--lightpurple);
}
.sections-nav__link-break {
  margin: 0 2rem;
}
@media screen and (max-width: 767px) {
  .sections-nav__link-break {
    margin: 0 1rem;
  }
}

.sections-container {
  position: relative;
  overflow: hidden;
}

.section {
  position: absolute;
  transition: left 2s, opacity 5s;
  opacity: 0;
}
.section--active {
  opacity: 100;
}

.card {
  transition: transform 1s, opacity 1s;
}

.card--hidden {
  opacity: 0;
  transform: translateY(8rem);
}

.projects {
  margin: 0 auto;
  width: 100%;
}
.projects__title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .projects__title {
    margin: 2rem auto 0;
  }
}
.projects__container {
  width: clamp(200px, 75%, 1000px);
}
.projects__container {
  display: flex;
  flex-direction: column;
  margin: 0 auto 5rem;
}
@media screen and (max-width: 767px) {
  .projects__container {
    justify-content: center;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .projects__container {
    justify-content: space-evenly;
  }
}

.project__card {
  background-color: var(--lightpurple);
  border-radius: 50px;
  box-shadow: 12px 12px 3px 1px var(--green);
}
@media screen and (max-width: 767px) {
  .project__card {
    padding: 2rem 0;
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .project__card {
    margin: 2rem auto;
    padding-top: 1rem;
    position: relative;
  }
}
.project__image {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--green);
  height: 200px;
  width: 200px;
}
@media screen and (min-width: 1280px) {
  .project__image {
    position: absolute;
    top: -25px;
  }
  .project__image--left {
    left: -50px;
  }
  .project__image--right {
    right: -50px;
  }
}
.project__body {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin: 1rem 10% 0;
}
@media screen and (min-width: 1280px) {
  .project__body {
    margin: 0 175px;
    padding: 2rem 0;
  }
}
.project__title {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .project__title {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .project__title {
    font-size: 2rem;
  }
}
.project__description {
  margin: 1rem 0;
}
@media screen and (max-width: 767px) {
  .project__description {
    font-size: 0.85rem;
  }
}
.project__spec {
  font-weight: 500;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .project__spec {
    font-size: 1rem;
  }
}
.project__spec--active {
  border-bottom: 2px solid var(--green);
  font-weight: 700;
}
.project__detail {
  display: none;
}
@media screen and (max-width: 767px) {
  .project__detail {
    font-size: 0.85rem;
  }
}
.project__detail--active {
  display: block;
}
.project__title-link-container {
  display: flex;
  align-items: center;
}
.project__title:hover {
  color: var(--green-hover);
}
.project__github-icon {
  margin-left: 1rem;
  width: 2rem;
}
.project__specs {
  display: flex;
}
.project__spec {
  margin-right: 1rem;
}

.interests {
  margin: 0 auto;
  width: 100%;
}
.interests__title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .interests__title {
    margin: 2rem auto 0;
  }
}
.interests__container {
  width: clamp(200px, 75%, 1000px);
}
.interests__container {
  display: flex;
  flex-direction: column;
  margin: 0 auto 5rem;
}
@media screen and (max-width: 767px) {
  .interests__container {
    justify-content: center;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .interests__container {
    justify-content: space-evenly;
  }
}

.interest__card {
  background-color: var(--lightpurple);
  border-radius: 50px;
  box-shadow: 12px 12px 3px 1px var(--green);
}
@media screen and (max-width: 767px) {
  .interest__card {
    padding: 2rem 0;
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .interest__card {
    margin: 2rem auto;
    padding-top: 1rem;
    position: relative;
  }
}
.interest__image {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--green);
  height: 200px;
  width: 200px;
}
@media screen and (min-width: 1280px) {
  .interest__image {
    position: absolute;
    top: -25px;
  }
  .interest__image--left {
    left: -50px;
  }
  .interest__image--right {
    right: -50px;
  }
}
.interest__body {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin: 1rem 10% 0;
}
@media screen and (min-width: 1280px) {
  .interest__body {
    margin: 0 175px;
    padding: 2rem 0;
  }
}
.interest__title {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .interest__title {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .interest__title {
    font-size: 2rem;
  }
}
.interest__description {
  margin: 1rem 0;
}
@media screen and (max-width: 767px) {
  .interest__description {
    font-size: 0.85rem;
  }
}
.interest__spec {
  font-weight: 500;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .interest__spec {
    font-size: 1rem;
  }
}
.interest__spec--active {
  border-bottom: 2px solid var(--green);
  font-weight: 700;
}
.interest__detail {
  display: none;
}
@media screen and (max-width: 767px) {
  .interest__detail {
    font-size: 0.85rem;
  }
}
.interest__detail--active {
  display: block;
}
.interest__spec {
  width: 60px;
}

.cta {
  margin: 0 auto;
  width: 100%;
}
.cta__title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cta__title {
    margin: 2rem auto 0;
  }
}
.cta__container {
  width: clamp(200px, 75%, 1000px);
}
.cta__container {
  background: var(--lightpurple);
  border-radius: 50px;
  margin: 2rem auto 5rem;
  padding: 2rem;
  box-shadow: 12px 12px 3px 1px var(--green);
}
@media screen and (max-width: 767px) {
  .cta__blurb1 {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .cta__blurb1 {
    font-size: 2rem;
  }
}
.cta__blurb2 {
  max-width: 500px;
}
.cta__blurb1, .cta__blurb2 {
  padding: 1rem;
  margin: 0 auto;
}
.cta__background-details-container {
  display: flex;
}
.cta__background {
  background-image: url("../assets/images/contact-us.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .cta__background {
    width: 0;
  }
}
@media screen and (min-width: 768px) {
  .cta__background {
    width: 50%;
  }
}
.cta__details-container {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 3fr;
  justify-items: left;
  margin: 0 0 0 auto;
}
.cta__icon {
  margin: 0.5rem;
  width: clamp(3rem, 4vw, 5rem);
}
.cta__cv-link {
  color: var(--green);
  vertical-align: middle;
}
.cta__cv-icon {
  margin: 0.5rem;
  vertical-align: middle;
  width: 2rem;
}
.cta__detail {
  color: var(--textblack);
}

.animation-container {
  position: relative;
  overflow: hidden;
  z-index: -1;
}

.background-octo {
  width: clamp(100px, 30vw, 300px);
  height: clamp(100px, 30vw, 300px);
  position: absolute;
  top: 550px;
  left: -300px;
  -webkit-animation: 60s linear 0s infinite running octo;
          animation: 60s linear 0s infinite running octo;
  z-index: -1;
}
@-webkit-keyframes octo {
  from {
    left: -330px;
    top: 550px;
  }
  to {
    left: 100%;
    top: 0px;
  }
}
@keyframes octo {
  from {
    left: -330px;
    top: 550px;
  }
  to {
    left: 100%;
    top: 0px;
  }
}

.background-star {
  width: clamp(100px, 30vw, 300px);
  height: clamp(100px, 30vw, 300px);
  position: absolute;
  top: 1550px;
  left: -300px;
  -webkit-animation: 60s linear 15s infinite running star;
          animation: 60s linear 15s infinite running star;
  z-index: -1;
}
@-webkit-keyframes star {
  from {
    left: -330px;
    top: 1550px;
  }
  to {
    left: 100%;
    top: 1200px;
  }
}
@keyframes star {
  from {
    left: -330px;
    top: 1550px;
  }
  to {
    left: 100%;
    top: 1200px;
  }
}

.background-circle {
  width: clamp(100px, 30vw, 300px);
  height: clamp(100px, 30vw, 300px);
  position: absolute;
  top: 0px;
  left: -300px;
  -webkit-animation: 60s linear 45s infinite running circle;
          animation: 60s linear 45s infinite running circle;
  z-index: -1;
}
@-webkit-keyframes circle {
  from {
    left: -330px;
    top: 0px;
  }
  to {
    left: 100%;
    top: 1350px;
  }
}
@keyframes circle {
  from {
    left: -330px;
    top: 0px;
  }
  to {
    left: 100%;
    top: 1350px;
  }
}

.background-triangle {
  width: clamp(100px, 30vw, 300px);
  height: clamp(100px, 30vw, 300px);
  position: absolute;
  top: 1100px;
  left: -300px;
  -webkit-animation: 60s linear 30s infinite running triangle;
          animation: 60s linear 30s infinite running triangle;
  z-index: -1;
}
@-webkit-keyframes triangle {
  from {
    left: -330px;
    top: 1100px;
  }
  to {
    left: 100%;
    top: 2200px;
  }
}
@keyframes triangle {
  from {
    left: -330px;
    top: 1100px;
  }
  to {
    left: 100%;
    top: 2200px;
  }
}

.background-square {
  width: clamp(100px, 30vw, 300px);
  height: clamp(100px, 30vw, 300px);
  position: absolute;
  top: 2200px;
  left: -300px;
  -webkit-animation: 60s linear 60s infinite running square;
          animation: 60s linear 60s infinite running square;
  z-index: -1;
}
@-webkit-keyframes square {
  from {
    left: -330px;
    top: 2200px;
  }
  to {
    left: 100%;
    top: 100px;
  }
}
@keyframes square {
  from {
    left: -330px;
    top: 2200px;
  }
  to {
    left: 100%;
    top: 100px;
  }
}

.footer {
  background-color: var(--green);
  width: 100%;
}
.footer__link-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__link {
  margin: 0 0.5rem;
}
.footer__icon {
  width: 2rem;
}
.footer__copyright {
  color: #eaf6f6;
  font-size: 1em;
  padding: 1rem;
  margin: 0;
}/*# sourceMappingURL=styles.css.map */