.main {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;

  width: 100vw;
  height: 100%;

  color: var(--text);
}

.content {
  max-width: 65%;

  line-height: 35px;
}

/* mobile */
.content {
  width: 60%;
  margin-right: 4rem;
  float: right;
}

/* mini */
@media screen and (min-width: 615px) {
  .content {
    width: 70%;
  }
}

/* desktop */
@media screen and (min-width: 1280px) {
  .content {
    width: fit-content;

    margin: 0 auto;

    float: none;
  }
}

