.red-box {
    background-color: #FFE8E8;
    width: 83%;
    height: 145px;
    padding: 35px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.exclamation-mark-image {
    width: 75px;
    height: 75px;
    margin-right: 11%;
}

.red-box-text {
    text-align: center;
    font-size: 28px;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    line-height: 38px;
    width: 900px;
    color: #363636;
}

@media all and (max-width: 768px) {
    .red-box {
        padding: 20px;
        width: 100%;
        height: auto;
    }

    .exclamation-mark-image {
        width: 60px;
        height: 60px;
        margin-right: 15px;
    }

    .red-box-text {
        font-size: 18px;
        line-height: 23px;
        width: 100%;
    }
}