.info-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: solid 5px #333;
    padding: 5px 10px 10px 10px;
    margin-bottom: 32px;
}

.info-title {
    color: red;
    font-weight: 700;
    font-size: 2rem;
}

.info-text {
    color: red;
    font-size: 1.1rem;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .info-box {
        margin-bottom: 16px;
    }

    .info-title {
        font-weight: 700;
        font-size: 1.6rem;
    }

    .info-text {
        font-size: 1rem;
        width: 100%;
    }

    br.none {
        display: none;
    }
}