/*Content block styles */
.content {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.content .image-holder {
  margin-bottom: -10rem;
  text-align: center;
  height: 100%;
}
.content .image-holder img {
  border-radius: 2rem;
  max-height: 100%;
}

.content .text-holder {
  text-align: justify;
  padding: 1rem 0;
  max-height: 280px;
  overflow-y: scroll;
  text-shadow:
    -2px -2px 4px var(--color-bg-text),
    2px -2px 4px var(--color-bg-text),
    -2px 2px 4px var(--color-bg-text),
    2px 2px 4px var(--color-bg-text);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.content .text-holder::-webkit-scrollbar {
  display: none;
}

.content .text-holder h2 {
  text-align: center;
}

@media (min-width: 768px) {
  .content .text-holder {
    max-height: 100%;
  }
}

@media (min-width: 1200px) {
  .content {
    flex-direction: row;
  }
  .content .image-holder {
    width: 50%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .content .image-holder img {
    height: 100%;
    max-height: 30rem;
  }
  .content .text-holder {
    width: 50%;
    text-shadow: none;
  }
}
