.characters {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.characters-title {
    font-size: 20px;
    text-align: center;
    color: #c9511d;
    font-weight: bold;
    margin-bottom: 70px;
    margin-top: 60px;
}

.characters-main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 140vh;
    margin: 0px 120px;
    margin-bottom: 80px;
}

.characters-content {
    display: flex;
}

.characters-content img {
    width: 180px;
}

.characters-detail {
    margin-left: 60px;
}

.characters-detail span {
    font-size: 32px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    color: #9e2b1a;
}

.characters-detail p {
    font-size: 20px;
    text-align: justify;
}

@media only screen and (max-width: 800px) {
    .characters-title {
      font-size: 18px;
    }

    .characters-main {
        align-items: center;
        height: 100vh;
    }

    .characters-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .characters-content img {
        width: 100px;
        margin-bottom: 10px;
    }

    .characters-detail {
        margin: 0;
    }

    .characters-detail span {
        font-size: 24px;
    }

    .characters-detail p {
        display: none;
    }
}
