* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

main {
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100dvh;
  background: hsl(233, 47%, 7%);
}
main article {
  border-radius: 1rem;
  overflow: hidden;
  background: hsl(244, 38%, 16%);
  display: flex;
  flex-direction: row;
  max-width: 900px;
  margin: 0 2rem;
}
@media (width < 900px) {
  main article {
    flex-direction: column-reverse;
  }
}
main article section {
  width: 50%;
}
@media (width < 900px) {
  main article section {
    width: 100%;
  }
}
main article section.content {
  padding: 3.5rem 1rem;
}
@media (width < 900px) {
  main article section.content {
    width: calc(100% - 2rem);
  }
}
main article section.content h1 {
  font-size: 2.5rem;
  color: #fff;
}
@media (width < 900px) {
  main article section.content h1 {
    text-align: center;
  }
}
main article section.content h1 span {
  color: hsl(277, 64%, 61%);
}
main article section.content p {
  padding: 2rem 0 3rem;
  font-size: 1.5rem;
  color: hsla(0, 0%, 100%, 0.75);
}
@media (width < 900px) {
  main article section.content p {
    text-align: center;
  }
}
main article section.content .teiler {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}
@media (width < 900px) {
  main article section.content .teiler {
    flex-direction: column-reverse;
  }
  main article section.content .teiler div {
    padding: 2.5rem 0 0 0;
    width: 100%;
  }
}
main article section.content .teiler p {
  margin: 0;
  padding: 0;
}
@media (width < 900px) {
  main article section.content .teiler p {
    text-align: center;
  }
}
main article section.content .teiler p.number {
  font-size: 1.5rem;
  font-weight: bolder;
  text-align: left;
  padding: 0 0 5px 0;
  color: #fff;
}
@media (width < 900px) {
  main article section.content .teiler p.number {
    text-align: center;
    font-size: 2.5rem;
  }
}
main article section.content .teiler p.content {
  font-size: 1rem;
  color: hsla(0, 0%, 100%, 0.75);
}
@media (width < 900px) {
  main article section.content .teiler p.content {
    font-size: 2rem;
  }
}
main article section.img {
  position: relative;
}
main article section.img div {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 500;
  background: rgba(170, 92, 219, 0.5);
}
main article section.img img {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*# sourceMappingURL=main.css.map */
