body {
  min-height: 100vh;
  background-color: var(--dark-gray);
}

.title {
  font-size: 45px;
  margin-top: 150px;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--main-font);
}

.characters-list-view {
  max-width: 900px;
  margin: 0px auto 120px auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.character-row {
  font-family: var(--description-font);
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  margin-top: 50px;
  /* border-bottom: 1px solid rgba(255,255,255,0.2); */
}

.character-row img {
  width: 400px;
  height: 500px;
  margin-right: 300px;
  object-fit: contain;
  border: 2px solid var(--black);
}

.info {
  text-align: center;
}

.character-row h2 {
  font-family: var(--description-font);
  letter-spacing: 1.5px;
  color: var(--red);
  display: flex;
  justify-content: center;
  margin: 0 0 40px 0;
  font-size: 50px;
}

.character-row p {
  display: flex;
  justify-content: center;
  margin: 0;
  width: 470px;
  font-size: 22px;
  color: var(--white);
}

@media (max-width: 768px) {

  .title {
    font-size: 28px;
    margin-top: 200px;
    margin-bottom: 20px;
  }

  .characters-list-view {
    margin: 100px 20px;
    gap: 60px;
  }

  .character-row {
    flex-direction: column;
    margin-top: 0;
    gap: 20px;
  }

  .character-row img {
    width: 90%;
    max-width: 320px;
    height: auto;
    margin-right: 0;
  }

  .info {
    text-align: center;
    padding: 0 10px;
  }

  .character-row h2 {
    font-size: 26px;
    margin-bottom: 15px;
    text-align: center;
  }

  .character-row p {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.7;
  }
}