body.is-glassmorphism {
  display: flex;
  flex-direction: column;
  background-color: rgb(250, 250, 249);
  color: #3c3c3c;
  height: 100vh;
  margin: 0;
  align-content: center;
  overflow: hidden;
}
body.is-glassmorphism [data-role=header],
body.is-glassmorphism [data-role=text] {
  font-family: "Inclusive Sans";
}
body.is-glassmorphism header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 1rem;
  padding-left: 3rem;
  padding-right: 3rem;
  font-variant: all-small-caps;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
}
body.is-glassmorphism header [data-role=external-links] {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 0.875rem;
       column-gap: 0.875rem;
}
body.is-glassmorphism header a {
  color: inherit;
  text-decoration: inherit;
}
body.is-glassmorphism main {
  display: flex;
  flex: 1 1 0%;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
}
body.is-glassmorphism main .content {
  display: flex;
  max-width: 56rem;
  flex: 1 1 0%;
  align-items: center;
  justify-content: center;
  row-gap: 3rem;
  padding: 3rem;
  flex-direction: row;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(159, 163, 213, 0.37);
  backdrop-filter: blur(3.5px);
  -webkit-backdrop-filter: blur(3.5px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
@media (min-width: 768px) {
  body.is-glassmorphism main .content {
    flex-direction: row;
  }
}
body.is-glassmorphism main .photo {
  display: flex;
  border-radius: 100%;
  justify-content: flex-start;
  align-items: flex-end;
  min-width: 16rem;
  width: 16rem;
  height: 16rem;
}
body.is-glassmorphism main .photo .photo-content {
  background-image: url("../assets/imgs/colo-transparent.png");
  display: block;
  height: 12rem;
  width: 12rem;
  border-radius: 0.375rem;
  background-size: cover;
  background-position: center;
  background-color: rgba(174, 164, 227, 0.2705882353);
  border-radius: 100%;
  align-self: center;
  backdrop-filter: blur(3.5px);
  -webkit-backdrop-filter: blur(3.5px);
}
body.is-glassmorphism main .text {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5rem;
  text-align: justify;
  flex-grow: 1;
}
body.is-glassmorphism main .text [data-role=text-title] {
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
body.is-glassmorphism .accent-color {
  color: #5c41e6;
}
body.is-glassmorphism .utils-shape {
  position: absolute;
  z-index: -1;
  width: 90vh;
  height: 90vh;
}
body.is-glassmorphism .shape {
  top: 20%;
  left: 20%;
  width: 400px;
  height: 400px;
  opacity: 0.8;
  background: linear-gradient(90deg, #aea4e3, #d3ffe8);
  animation: wave1 4s ease-in-out infinite;
}
body.is-glassmorphism .shape:nth-of-type(2) {
  width: 800px;
  height: 800px;
  position: absolute;
  top: 30%;
  left: 80%;
  opacity: 0.3;
  z-index: -1;
  animation: wave2 3s ease-in-out infinite;
}
body.is-glassmorphism .shape:nth-of-type(3) {
  width: 300px;
  height: 300px;
  position: absolute;
  top: 70%;
  left: 70%;
  opacity: 0.2;
  z-index: -1;
  animation: wave3 3.2s ease-in-out infinite;
}
@keyframes wave1 {
  0%, 100% {
    border-radius: 70% 30% 72% 28%/27% 61% 39% 73%;
  }
  50% {
    border-radius: 77% 23% 54% 46%/40% 38% 62% 60%;
  }
}
@keyframes wave2 {
  0%, 100% {
    border-radius: 30% 72% 28% 70%/61% 39% 73% 27%;
  }
  50% {
    border-radius: 23% 54% 46% 77%/38% 62% 60% 40%;
  }
}
@keyframes wave3 {
  0%, 100% {
    border-radius: 28% 70% 30% 72%/73% 27% 61% 39%;
  }
  50% {
    border-radius: 46% 77% 23% 54%/60% 40% 38% 62%;
  }
}/*# sourceMappingURL=glassmorphism.css.map */