@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
*,
*::before,
*::after {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  border: none;
  margin: 0;
  scroll-behavior: smooth;
}
* ::-webkit-scrollbar-track,
*::before ::-webkit-scrollbar-track,
*::after ::-webkit-scrollbar-track {
  background-color: transparent;
}

body {
  background-color: #f9f8f6;
}

a {
  color: inherit;
  text-decoration: none;
}

a.text-link {
  background-image: linear-gradient(#f9f8f6 50%, rgba(88, 135, 255, 0.5) 50%);
  background-size: auto 180%;
  transition: all 0.15s ease-in-out;
}
a.text-link:hover {
  background-position-y: 100%;
  background-image: linear-gradient(#f9f8f6 50%, rgba(88, 135, 255, 0.5) 50%);
}

p.strong {
  font-weight: bold;
}

.hide {
  display: none;
}

.stained-glass {
  width: 6rem;
  height: 6rem;
  position: absolute;
  --stained-glass-margin: 6rem;
}
@media screen and (max-width: 1024px) {
  .stained-glass {
    --stained-glass-margin: 0rem;
    width: 5rem;
    height: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .stained-glass {
    display: none;
  }
}
.stained-glass:nth-child(1) {
  background-color: rgba(88, 135, 255, 0.5);
  top: 100px;
  left: calc(2rem + var(--stained-glass-margin));
}
.stained-glass:nth-child(2) {
  background-color: rgba(188, 182, 255, 0.5);
  top: 150px;
  left: calc(3rem + var(--stained-glass-margin));
}
.stained-glass:nth-child(3) {
  background-color: rgba(184, 225, 255, 0.5);
  top: 450px;
  left: calc(11rem + var(--stained-glass-margin));
}
.stained-glass:nth-child(4) {
  background-color: rgba(148, 251, 171, 0.5);
  top: 500px;
  left: calc(8rem + var(--stained-glass-margin));
}
.stained-glass:nth-child(5) {
  background-color: rgba(239, 138, 23, 0.5);
  top: 270px;
  right: calc(5rem + var(--stained-glass-margin));
}
.stained-glass:nth-child(6) {
  background-color: rgba(239, 41, 23, 0.5);
  top: 320px;
  right: calc(3rem + var(--stained-glass-margin));
}

main {
  height: 100vh;
  padding: 6rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media only screen and (max-width: 767.98px) {
  main {
    padding: 2rem;
  }
}
main .bio {
  max-width: 30rem;
}
main .hello {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
}
main .writeup {
  font-size: 1rem;
  font-weight: 400;
  color: #000;
}
main .social-icons {
  padding: 0.5rem 0;
}
main .social-icons a {
  padding-right: 0.5rem;
  transition: all 0.3s ease-in-out;
}
main .social-icons a:hover {
  color: #5887ff;
}
main .downwards-button {
  flex-grow: 1;
  display: flex;
}
main .downwards-button button {
  width: 3rem;
  height: 3rem;
  align-self: flex-end;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  animation: bounce 1s infinite alternate;
}
main .downwards-button button:hover {
  background-color: rgba(88, 135, 255, 0.5);
}
@keyframes bounce {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-0.5rem);
  }
}

section {
  padding: 6rem;
}
@media only screen and (max-width: 767.98px) {
  section {
    padding: 2rem;
  }
}
section .header-wrapper {
  max-width: 60rem;
  margin: 0 auto;
}
@media only screen and (max-width: 1399.98px) {
  section .header-wrapper {
    max-width: 50rem;
  }
}
@media only screen and (max-width: 767.98px) {
  section .header-wrapper {
    max-width: 100%;
  }
}
section .header-wrapper h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
}
section .header-wrapper .caption {
  font-size: 1rem;
  font-weight: 400;
  color: #000;
}
section .imagearea {
  width: 100%;
  height: 100%;
  padding: 1rem;
  display: flex;
  justify-content: center;
}
section .imagearea img {
  max-height: 800px;
  max-width: 60vw;
  box-shadow: 0 0 4px rgba(88, 135, 255, 0.3);
}
@media only screen and (max-width: 1199.97px) {
  section .imagearea img {
    max-width: 70vw;
  }
}
@media only screen and (max-width: 767.98px) {
  section .imagearea img {
    max-width: 100%;
  }
}
section .image-chooser {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
}
section .image-chooser button {
  width: 1rem;
  height: 1rem;
  margin: 0 0.2rem;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #000;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
section .image-chooser button:hover, section .image-chooser button.active {
  background-color: rgba(88, 135, 255, 0.5);
}
section .description-wrapper {
  display: flex;
  justify-content: center;
  align-items: baseline;
}
@media only screen and (max-width: 767.98px) {
  section .description-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
section .meta {
  width: 20rem;
}
@media only screen and (max-width: 1399.98px) {
  section .meta {
    width: 15rem;
  }
}
@media only screen and (max-width: 767.98px) {
  section .meta {
    max-width: 100%;
    margin-right: auto;
  }
}
section .description.full-width {
  margin: 1rem 0;
  width: 60rem;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
}
@media only screen and (max-width: 1399.98px) {
  section .description.full-width {
    width: 50rem;
  }
}
@media only screen and (max-width: 767.98px) {
  section .description.full-width {
    max-width: 100%;
    margin-right: auto;
  }
}
section .description.half-width {
  margin: 1rem 0;
  width: 30rem;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
}
@media only screen and (max-width: 1399.98px) {
  section .description.half-width {
    width: 25rem;
  }
}
@media only screen and (max-width: 767.98px) {
  section .description.half-width {
    max-width: 100%;
    margin-right: auto;
  }
}
section .description {
  margin: 1rem 0;
  width: 40rem;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
}
@media only screen and (max-width: 1399.98px) {
  section .description {
    width: 35rem;
  }
}
@media only screen and (max-width: 767.98px) {
  section .description {
    max-width: 100%;
    margin-right: auto;
  }
}

.content-selector-wrapper {
  position: fixed;
  background-color: #efece7;
  transition: all 0.15s ease-in-out;
  top: 200px;
  right: 50px;
  padding: 1rem;
  border-radius: 1rem;
}
@media only screen and (max-width: 1199.97px) {
  .content-selector-wrapper {
    display: none;
  }
}
.content-selector-wrapper .content-selector-item {
  transition: all 0.3s ease-in-out;
  color: black;
}
.content-selector-wrapper .content-selector-item .currently-viewing {
  color: #5887ff;
}

.opacity-0 {
  opacity: 0;
}

footer {
  padding: 6rem;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767.98px) {
  footer {
    padding: 2rem;
  }
}
footer .get-in-touch {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
}
footer .social-icons {
  padding: 0.5rem 0;
}
footer .social-icons a {
  padding-right: 0.5rem;
  transition: all 0.3s ease-in-out;
}
footer .social-icons a:hover {
  color: #5887ff;
}

.cursor {
  position: fixed;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #5887ff;
  z-index: 9999;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767.98px) {
  .cursor {
    display: none;
  }
}

@media (hover: hover) {
  * {
    cursor: none;
  }
}/*# sourceMappingURL=index.css.map */