@media screen and (min-width: 620px) {
  .content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 2vw;
  }
  .text-holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5vw;
    text-align: center;
    margin-bottom: 5vw;
  }
  .text-holder h1 {
    font-size: 2vw;
  }
  .text-holder p {
    font-size: 1vw;
  }
}

@media screen and (max-width: 630px) {
  .content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 10vw;
  }

  .image-holder {
    width: 100%;
  }

  .text-holder {
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 2vw;
    background-color: var(--box-color);
    padding: 6vw 8vw;
  }
  .text-holder h1 {
    font-size: 6vw;
    text-align: center;
  }
  .text-holder p {
    text-align: center;
    font-size: 4vw;
  }
}
