.wrapper {
    max-width: 800px;
    width: 90%;
}

.wrapper img {
    margin-right: 1rem;
    max-width: 160px;
    max-height: 160px;
    object-fit: contain;
}

.text,
.wrapper h2 {
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    user-select: none;
}

.text {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

@media(max-width: 600px) {
    .wrapper {
        flex-direction: column;
        align-items: center;
    }

    .wrapper img {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .wrapper h2 {
        text-align: center;
    }
}