body.is-neumorphism {
  display: flex;
  flex-direction: column;
  background-color: #D2DBEE;
  color: #8d96a9;
  height: 100vh;
  margin: 0;
  align-content: center;
  overflow: hidden;
  text-transform: lowercase;
}
body.is-neumorphism [data-role=header],
body.is-neumorphism [data-role=text] {
  font-family: "Inclusive Sans";
}
body.is-neumorphism header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 1rem;
  padding-left: 3rem;
  padding-right: 3rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
}
body.is-neumorphism header [data-role=external-links] {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 0.875rem;
       column-gap: 0.875rem;
}
body.is-neumorphism header a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
body.is-neumorphism header a.link {
  background: #D2DBEE;
  box-shadow: inset 4.2px 4.2px 9px #C2CBDC, inset -4.2px -4.2px 9px #E2EBFF;
  border-radius: 8px;
  padding: 8px;
}
body.is-neumorphism header a.link:hover {
  box-shadow: 8.71px 8.71px 9px #C2CBDC, -8.71px -8.71px 9px #E2EBFF;
}
body.is-neumorphism main {
  display: flex;
  flex: 1 1 0%;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
}
body.is-neumorphism 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: #D2DBEE;
  border-radius: 24px;
  box-shadow: 8.71px 8.71px 9px #C2CBDC, -8.71px -8.71px 9px #E2EBFF;
}
@media (min-width: 768px) {
  body.is-neumorphism main .content {
    flex-direction: row;
  }
}
body.is-neumorphism main .photo {
  display: flex;
  border-radius: 100%;
  justify-content: flex-start;
  align-items: flex-end;
  min-width: 16rem;
  width: 16rem;
  height: 16rem;
}
body.is-neumorphism 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;
  border-radius: 100%;
  align-self: center;
  backdrop-filter: blur(3.5px);
  -webkit-backdrop-filter: blur(3.5px);
  background-color: #D2DBEE;
  box-shadow: 4.2px 4.2px 9px #C2CBDC, -4.2px -4.2px 9px #E2EBFF;
  animation: wave 3.2s ease-in-out infinite;
}
@keyframes wave {
  0%, 100% {
    box-shadow: 4.2px 4.2px 9px #C2CBDC, -4.2px -4.2px 9px #E2EBFF;
  }
  50% {
    box-shadow: 7.81px 7.81px 16px #B0B8C8, -7.81px -7.81px 16px #F4FEFF;
  }
}
body.is-neumorphism 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-neumorphism main .text [data-role=text-title] {
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
body.is-neumorphism .accent-color {
  color: #fff;
}/*# sourceMappingURL=neuomorphism.css.map */