@font-face {
  font-family: "Blue-Winter";
  src: url("../fonts/blueWinter-_Inv0C4.ttf");
}
@font-face {
  font-family: "Just-Sans-Regular";
  src: url("../fonts/justSansRegular-l_TnCjW.woff2");
}
@font-face {
  font-family: "Just-Sans-ExBold";
  src: url("../fonts/justSansBold-1NljF5s.woff2");
}
@font-face {
  font-family: "Upheavtt";
  src: url("../fonts/upheavtt-do6XNlH.ttf") format("truetype");
}
@font-face {
  font-family: "Rainyhearts";
  src: url("../fonts/rainyhearts-GNsL5Dn.ttf") format("truetype");
}
@font-face {
  font-family: "Dogica-Pixel";
  src: url("../fonts/dogicapixel-UDknUb2.ttf") format("truetype");
}
@font-face {
  font-family: "Dogica-Pixel-Bold";
  src: url("../fonts/dogicapixelbold-ceTSAYX.ttf") format("truetype");
}
body {
  background-color: #24273a;
  color: #cad3f5;
}

h1 {
  font-family: "Upheavtt";
  font-size: clamp(4.2915rem, 5.7339rem - 0.601vw, 5.5987rem);
}

a {
  text-decoration: none;
}

p,
a {
  font-size: clamp(1.125rem, 1.9526rem - 0.3448vw, 1.875rem);
}

h1,
h2,
h3,
p {
  margin: 0;
}

* {
  color: #cad3f5;
  font-family: "Just-Sans-Regular";
}

.button {
  background-color: #181926;
  padding: 10px;
  font-size: clamp(0.9rem, 1.631rem - 0.3046vw, 1.5625rem);
  border: none;
  border-radius: 5px;
}
.button--no-background {
  background-color: transparent;
}
.button--fit-content {
  width: fit-content;
}
.button--thin {
  padding: 5px;
}
.button--large {
  padding: 15px;
}
.button--outlined {
  border: 1px solid #a6da95;
}
.button--corner {
  position: relative;
  z-index: 0;
  margin: 10px;
}
.button--corner::before, .button--corner::after {
  content: "";
  position: absolute;
  width: 5%;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #a6da95;
  z-index: -1;
  transition: translate 0.6s ease;
  border-radius: 2px;
}
.button--corner::before {
  clip-path: polygon(100% 100%, 100% 0%, 0% 100%);
  top: 0;
  left: 0;
  translate: -100% -100%;
  animation-name: corner-uqo1981;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-delay: 0s;
  animation-direction: alternate;
  animation-fill-mode: forwards;
}
@keyframes corner-uqo1981 {
  from {
    translate: -100% -100%;
  }
  to {
    translate: -150% -150%;
  }
}
.button--corner::after {
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
  bottom: 0;
  right: 0;
  translate: 100% 100%;
  animation-name: corner-uqo198m;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-delay: 0s;
  animation-direction: alternate;
  animation-fill-mode: forwards;
}
@keyframes corner-uqo198m {
  from {
    translate: 100% 100%;
  }
  to {
    translate: 150% 150%;
  }
}
.button--corner:hover::before {
  animation-name: corner-uqo198x;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-delay: 0s;
  animation-direction: alternate;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}
@keyframes corner-uqo198x {
  from {
    translate: -150% -150%;
  }
  to {
    translate: -100% -100%;
  }
}
.button--corner:hover::after {
  animation-name: corner-uqo199e;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-delay: 0s;
  animation-direction: alternate;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}
@keyframes corner-uqo199e {
  from {
    translate: 150% 150%;
  }
  to {
    translate: 100% 100%;
  }
}
.button--bg-animated {
  position: relative;
  overflow: hidden;
  transition: background-position 0.6s ease, color 0.3s ease;
  z-index: 0;
  background: linear-gradient(165deg, #a6da95 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%), linear-gradient(140deg, #24273a 0%, #24273a 100%);
  background-size: 200% 200%, 100% 100%;
  background-position: 200% 200%, 0 0;
  background-repeat: no-repeat;
}
.button--bg-animated:hover {
  background-position: 0% 0%, 0 0;
  color: #24273a;
}
.button--bg-animated:hover > svg {
  color: #24273a;
}
.button--bg-animated:hover > svg > g {
  color: #24273a;
}
.button--border-animated {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: transparent;
}
.button--border-animated::before, .button--border-animated::after {
  content: "";
  position: absolute;
  display: block;
  border-radius: 5px;
  z-index: -3;
}
.button--border-animated::before {
  bottom: -10%;
  right: 105%;
  width: 115%;
  height: 115%;
  background-color: #a6da95;
  transition: all 0.6s ease;
}
.button--border-animated::after {
  width: 98%;
  height: 95%;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background-color: #181926;
}
.button--border-animated:hover::before {
  bottom: -10%;
  right: -10%;
}

.card {
  background-color: #1e2030;
  border-radius: 5px;
  display: flex;
  position: relative;
  z-index: 0;
}
.card--column {
  flex-direction: column;
}
.card--row {
  flex-direction: row;
}
.card__img {
  width: 50%;
  margin: 0 auto;
  border-radius: 50%;
  aspect-ratio: 1/1;
  object-fit: contain;
}
.card__img--white {
  background-color: white;
}
.card__img--landscape {
  width: 50%;
  aspect-ratio: 2/1;
  object-fit: cover;
}
.card__img--no-round {
  border-radius: 0;
}
.card__img--litle {
  width: 20%;
}
.card__img--small {
  width: 35%;
}
.card__img--half {
  width: 50%;
}
.card__img--big {
  width: 75%;
}
.card__img--full {
  width: 100%;
}
.card__title {
  font-size: clamp(1.4063rem, 2.3373rem - 0.3879vw, 2.25rem);
  font-family: "Just-Sans-ExBold";
}
.card__button {
  margin-top: 20px;
  width: 100%;
}
.card__pills {
  padding: 5px 0;
}
.card__content {
  padding: 15px;
  font-size: clamp(1.125rem, 1.9526rem - 0.3448vw, 1.875rem);
}
.card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.grid {
  display: flex;
}
.grid--row {
  flex-direction: row;
}
.grid--column {
  flex-direction: column;
}
.grid__card {
  padding: 15px;
  margin: 10px;
}

.pills {
  display: flex;
  gap: 10px;
  overflow: auto;
}
.pills__item:nth-child(1) {
  background-color: rgba(166, 218, 149, 0.8);
  border: 2px solid #a6da95;
}
.pills__item:nth-child(2) {
  background-color: rgba(237, 135, 150, 0.8);
  border: 2px solid #ed8796;
}
.pills__item:nth-child(3) {
  background-color: rgba(138, 173, 244, 0.8);
  border: 2px solid #8aadf4;
}
.pills__item:nth-child(4) {
  background-color: rgba(166, 218, 149, 0.8);
  border: 2px solid #a6da95;
}
.pills__item:nth-child(5) {
  background-color: rgba(237, 135, 150, 0.8);
  border: 2px solid #ed8796;
}
.pills__item:nth-child(6) {
  background-color: rgba(138, 173, 244, 0.8);
  border: 2px solid #8aadf4;
}
.pills__item:nth-child(7) {
  background-color: rgba(166, 218, 149, 0.8);
  border: 2px solid #a6da95;
}
.pills__item:nth-child(8) {
  background-color: rgba(237, 135, 150, 0.8);
  border: 2px solid #ed8796;
}
.pills__item:nth-child(9) {
  background-color: rgba(138, 173, 244, 0.8);
  border: 2px solid #8aadf4;
}
.pills__item:nth-child(10) {
  background-color: rgba(166, 218, 149, 0.8);
  border: 2px solid #a6da95;
}
.pills__item:nth-child(11) {
  background-color: rgba(237, 135, 150, 0.8);
  border: 2px solid #ed8796;
}
.pills__item:nth-child(12) {
  background-color: rgba(138, 173, 244, 0.8);
  border: 2px solid #8aadf4;
}
.pills__item:nth-child(13) {
  background-color: rgba(166, 218, 149, 0.8);
  border: 2px solid #a6da95;
}
.pills__item:nth-child(14) {
  background-color: rgba(237, 135, 150, 0.8);
  border: 2px solid #ed8796;
}
.pills__item:nth-child(15) {
  background-color: rgba(138, 173, 244, 0.8);
  border: 2px solid #8aadf4;
}
.pills__item:nth-child(16) {
  background-color: rgba(166, 218, 149, 0.8);
  border: 2px solid #a6da95;
}
.pills__item:nth-child(17) {
  background-color: rgba(237, 135, 150, 0.8);
  border: 2px solid #ed8796;
}
.pills__item:nth-child(18) {
  background-color: rgba(138, 173, 244, 0.8);
  border: 2px solid #8aadf4;
}
.pills__item:nth-child(19) {
  background-color: rgba(166, 218, 149, 0.8);
  border: 2px solid #a6da95;
}
.pills__item:nth-child(20) {
  background-color: rgba(237, 135, 150, 0.8);
  border: 2px solid #ed8796;
}
.pills__item {
  border-radius: 15px;
  padding: 5px 10px;
  color: #24273a;
  font-size: clamp(1.4063rem, 2.3373rem - 0.3879vw, 2.25rem);
}
.pills__item a {
  color: #24273a;
  font-size: clamp(1.4063rem, 2.3373rem - 0.3879vw, 2.25rem);
}
.pills__item--inactive {
  opacity: 0.3;
}

.title {
  width: fit-content;
}
.title--h1 {
  font-size: clamp(2.7466rem, 4.0061rem - 0.5248vw, 3.888rem);
}
.title--h2 {
  font-size: clamp(2.1973rem, 3.3479rem - 0.4794vw, 3.24rem);
}
.title--h3 {
  font-size: clamp(1.7578rem, 2.7975rem - 0.4332vw, 2.7rem);
}
.title--h4 {
  font-size: clamp(1.4063rem, 2.3373rem - 0.3879vw, 2.25rem);
}
.title--underline {
  position: relative;
}
.title--underline::before {
  content: "";
  position: absolute;
  height: 3px;
  width: 100%;
  bottom: 0;
  left: 10px;
  background-color: #a6da95;
  border-radius: 5px;
}

.header {
  position: fixed;
  display: flex;
  top: 15px;
  z-index: 1;
  gap: 10px;
  top: unset;
  bottom: 15px;
  left: 50%;
  translate: -50% 0;
}
@media (min-width: 1024px) {
  .header {
    width: 70%;
    position: relative;
    bottom: unset;
    translate: unset;
    left: unset;
  }
}
.header.open > :first-child {
  opacity: 1;
  height: 100vh;
}
.header__menu {
  display: flex;
  gap: 10px;
  background-color: #1e2030;
  border-radius: 5px;
  width: fit-content;
  align-items: center;
  padding-left: 0;
}
@media (min-width: 1024px) {
  .header__menu {
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid #a6da95;
  }
}
.header > :first-child {
  opacity: 0;
  position: fixed;
  width: 100vw;
  height: 0px;
  top: -95vh;
  left: -34vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #1e2030;
  transition: 0.6s ease opacity;
  z-index: -1;
}
@media (min-width: 1024px) {
  .header > :first-child {
    flex: 2;
    opacity: 1;
    width: unset;
    height: unset;
    position: relative;
    top: unset;
    left: unset;
    flex-direction: row;
    justify-content: start;
  }
}
.header > :last-child {
  z-index: 3;
}
@media (min-width: 1024px) {
  .header > :last-child > :last-child {
    display: none;
  }
}

.menu__item {
  list-style-type: none;
  padding: 5px;
  margin: 5px 0;
  transition: 0.5s background-color ease;
}
.menu__item a,
.menu__item span {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: clamp(1.4063rem, 2.3373rem - 0.3879vw, 2.25rem);
}
@media screen {
  .menu__item a,
  .menu__item span {
    font-size: clamp(1.125rem, 1.9526rem - 0.3448vw, 1.875rem);
  }
}
.menu__item:hover {
  background-color: #1e2030;
}

.footer {
  position: relative;
  overflow: hidden;
  margin: 0px;
}
@media (min-width: 1024px) {
  .footer::before, .footer::after, .footer__inner::before, .footer__inner::after {
    content: "FOOTER";
    position: absolute;
    font-size: clamp(3.4332rem, 4.7931rem - 0.5666vw, 4.6656rem);
    font-weight: 800;
    font-family: "Upheavtt";
    scale: 2;
    opacity: 0.9;
    z-index: 1;
    right: 0;
    rotate: 30deg;
  }
  .footer::before {
    top: -10%;
  }
  .footer::after {
    top: 30%;
  }
  .footer__inner::before {
    top: 70%;
  }
  .footer__inner::after {
    top: 110%;
  }
  .footer__inner {
    padding-bottom: 0;
  }
}
.footer__inner {
  padding: 30px;
  background-color: #181926;
  padding-bottom: 110px;
}
.footer__grid {
  gap: 40px;
  display: grid;
  grid-template-columns: repeat(1, 70%);
  width: 100%;
  justify-content: center;
  align-items: center;
  justify-items: center;
}
@media (min-width: 1024px) {
  .footer__grid {
    gap: 35px;
    grid-template-columns: repeat(6, 1fr);
  }
}
.footer__card {
  padding: 10px;
  height: 100%;
  z-index: 0;
  width: 100%;
}
.footer__logo {
  height: auto;
  width: 70%;
  aspect-ratio: 2/1;
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer__logo svg {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.footer__logo::before, .footer__logo::after {
  font-size: clamp(2.1973rem, 3.3479rem - 0.4794vw, 3.24rem);
  text-transform: capitalize;
}
.footer__logo::before {
  content: "'/hello";
}
.footer__logo::after {
  content: "world'";
}
@media (min-width: 1024px) {
  .footer__logo {
    width: 70%;
    aspect-ratio: 1/1;
  }
  .footer__logo::before {
    content: unset;
  }
  .footer__logo::after {
    content: unset;
  }
}

.list__element,
.list__element a {
  font-size: clamp(1.125rem, 1.9526rem - 0.3448vw, 1.875rem);
}
.list__element a {
  text-decoration: underline;
}

.social__menu {
  display: flex;
  flex-direction: row;
  padding: 0;
}

.input--text {
  color: #24273a;
  padding: 5px;
  margin-bottom: 5px;
}
.input--text:focus {
  border: 2px solid #a6da95;
}

.label {
  font-size: clamp(1.125rem, 1.9526rem - 0.3448vw, 1.875rem);
}

.project__inner {
  margin: 0 20px;
}
@media (min-width: 1024px) {
  .project__inner {
    margin: 0 200px;
    margin-bottom: 50px;
  }
}
.project__grid {
  margin-top: 15px;
  gap: 15px;
}
.project__card {
  overflow: hidden;
  flex-direction: column;
}
.project__card .card__img {
  width: 100%;
}
@media (min-width: 1024px) {
  .project__header {
    position: sticky;
    margin: 0 auto;
  }
}

.blog__inner {
  margin: 0 20px;
}
@media (min-width: 1024px) {
  .blog__inner {
    margin: 0 200px;
    margin-bottom: 50px;
  }
}
@media (min-width: 1024px) {
  .blog__header {
    position: sticky;
    margin: 0 auto;
  }
}
.blog__article-section {
  margin-top: 20px;
}

.article-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) {
  .article-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home__header {
  position: fixed;
  left: 50%;
  translate: -50% 0;
}
.home__intro {
  display: flex;
  align-items: center;
}
@media (min-width: 1024px) {
  .home__intro {
    height: 100vh;
  }
}
.home__project-section {
  margin: 0 auto;
  width: 90%;
}
@media (min-width: 1024px) {
  .home__project-section {
    width: 70%;
  }
}

.hero {
  width: 100%;
  height: 20vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero {
    height: 100vh;
  }
}
.hero__title {
  font-family: "Upheavtt";
  font-size: clamp(4.2915rem, 5.7339rem - 0.601vw, 5.5987rem);
}
.hero__icon {
  width: fit-content;
  bottom: 50px;
  position: absolute;
  animation: loop 2s infinite alternate;
}
@keyframes loop {
  from {
    bottom: 50px;
  }
  to {
    bottom: 70px;
  }
}
.hero__icon svg {
  width: 20px;
  height: 20px;
  aspect-ratio: 1/1;
}

.intro__inner {
  margin-top: 140px;
  background-color: #1e2030;
  padding: 20px;
  border-radius: 10px;
  margin: 0 auto;
  width: 90%;
}
@media (min-width: 1024px) {
  .intro__inner {
    width: 60%;
  }
}
.intro__heading {
  display: flex;
}

.heading__title {
  font-size: clamp(1.7578rem, 2.7975rem - 0.4332vw, 2.7rem);
  margin-bottom: 10px;
  font-family: "Dogica-Pixel-Bold";
}
.heading__img {
  width: 10%;
  height: 10%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
}
.heading__social {
  display: flex;
}
.heading__content {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.social {
  display: flex;
  gap: 10px;
}
.social__menu > *:nth-child(1) {
  animation-name: cta;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-delay: 6s;
  rotate: 0deg;
}
@keyframes cta {
  0% {
    rotate: 0deg;
  }
  1% {
    rotate: 10deg;
  }
  3% {
    rotate: -10deg;
  }
  5% {
    rotate: 10deg;
  }
  7% {
    rotate: -10deg;
  }
  9% {
    rotate: 0deg;
  }
  100% {
    rotate: 0deg;
  }
}
.social__menu > *:nth-child(2) {
  animation-name: cta;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-delay: 3s;
  rotate: 0deg;
}
@keyframes cta {
  0% {
    rotate: 0deg;
  }
  1% {
    rotate: 10deg;
  }
  3% {
    rotate: -10deg;
  }
  5% {
    rotate: 10deg;
  }
  7% {
    rotate: -10deg;
  }
  9% {
    rotate: 0deg;
  }
  100% {
    rotate: 0deg;
  }
}
.social__menu > *:nth-child(3) {
  animation-name: cta;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-delay: 0s;
  rotate: 0deg;
}
@keyframes cta {
  0% {
    rotate: 0deg;
  }
  1% {
    rotate: 10deg;
  }
  3% {
    rotate: -10deg;
  }
  5% {
    rotate: 10deg;
  }
  7% {
    rotate: -10deg;
  }
  9% {
    rotate: 0deg;
  }
  100% {
    rotate: 0deg;
  }
}
.social__icon svg {
  aspect-ratio: 1/1;
  width: 20px;
  height: 20px;
}

.info {
  margin: 10px 0;
}
.info__title {
  font-size: clamp(1.4063rem, 2.3373rem - 0.3879vw, 2.25rem);
}
.info--blue {
  position: relative;
}
.info--blue::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: #8aadf4;
  left: -10px;
}
.info--green {
  position: relative;
}
.info--green::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: #a6da95;
  left: -10px;
}
.info--red {
  position: relative;
}
.info--red::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: #ed8796;
  left: -10px;
}

.skill-section {
  margin: 0 auto;
  margin-top: 100px;
  gap: 10px;
  display: flex;
  flex-direction: column;
  width: 90%;
}
.skill-section__grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 1024px) {
  .skill-section {
    width: 70%;
  }
  .skill-section__grid {
    margin: 0 -150px;
    grid-template-columns: repeat(5, 1fr);
  }
}
.skill-section__button {
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 60px;
}

.project-section {
  margin-top: 30px;
}
.project-section__card {
  margin-top: 30px;
}
.project-section__button {
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 60px;
}

@media (min-width: 1024px) {
  .login__header {
    position: sticky;
    margin: 0 auto;
  }
}
.login__inner {
  margin: 0 auto;
  width: 80vw;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .login__inner {
    margin: 0 200px;
  }
}
.login__form {
  width: fit-content;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .register__header {
    position: sticky;
    margin: 0 auto;
  }
}
.register__inner {
  margin: 0 auto;
  width: 80vw;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .register__inner {
    margin: 0 200px;
  }
}
.register__form {
  width: fit-content;
  display: flex;
  flex-direction: column;
}

.career__inner {
  margin: 0 20px;
}
@media (min-width: 1024px) {
  .career__inner {
    margin: 0 200px;
    margin-bottom: 50px;
  }
}
@media (min-width: 1024px) {
  .career__header {
    position: sticky;
    margin: 0 auto;
  }
}
.career__grid {
  gap: 50px;
  display: flex;
  margin-top: 15px;
  margin-bottom: 140px;
  position: relative;
}
.career__grid::before, .career__grid::after {
  content: "";
  position: absolute;
}
.career__grid::before {
  width: 20px;
  height: 100%;
  background-color: #a6da95;
  clip-path: polygon(70% 99%, 100% 99%, 50% 100%, 0% 99%, 30% 99%, 30% 0%, 70% 0%);
  top: 55%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.career__grid::after {
  content: "To be continued";
  bottom: -9%;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(1.125rem, 1.9526rem - 0.3448vw, 1.875rem);
}
@media (min-width: 1024px) {
  .career__card {
    width: 70%;
    position: relative;
  }
  .career__card:nth-child(odd) {
    align-self: flex-start;
  }
  .career__card:nth-child(even) {
    align-self: flex-end;
  }
}

.article__inner {
  margin: 0 20px;
}
@media (min-width: 1024px) {
  .article__inner {
    margin: 0 200px;
    margin-bottom: 50px;
  }
}
.article__main {
  background-color: #181926;
  border-radius: 25px 25px 0 0;
  padding: 20px;
  padding-bottom: 100vh;
  margin-top: 190px;
  font-size: clamp(1.125rem, 1.9526rem - 0.3448vw, 1.875rem);
}
@media (min-width: 1024px) {
  .article__header {
    position: sticky;
    margin: 0 auto;
  }
}
.article__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 99vw;
  aspect-ratio: 3/1;
  object-fit: cover;
  z-index: -1;
}

.main__text {
  margin-top: 20px;
}
.main__pills {
  margin: 15px 0;
}

/*# sourceMappingURL=app.output.css.map */
