main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 4vw;

    padding: 8vh 10vw;
}

main img {
    max-width: 25vw;
}

main figure {
    width: 30vw;

    padding: 6vh 2vw;

    background-color: var(--blue);
    color: var(--yellow);
    text-align: justify;
}

main q {
    line-height: 3vh;
}

main figcaption {
    margin: 3vh 2vw;
    text-align: right;
}

main div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 992px) {
    main {
        flex-direction: column;
        align-items: center;
    }

    main img {
        max-width: 80vw;
    }

    main figure {
        width: 80vw;

        padding: 4vh 4vw;
    }
}

.bg-custom {
    background-color: #262746 !important;
}

.bg-custom-white {
    background-color: #faf5ef !important;
}

.btn:hover {
    filter: brightness(1.2);
}