.image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-bottom: 20px;
}

    .image-container img {
        height: 215px;
    }

.message-container {
    font-family: 'Gotham Book';
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.message-container__title {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    padding-bottom: 20px;
}

.message-container__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 48em) {
    .message-container__text {
        width: 90%;
    }
}

.message-container__text--paragraphs span {
    padding-bottom: 30px;
    text-align: justify;
}


.response-outcome__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 30px;
}

.response-outcome__button-container {
    margin-top:25px;
    width: 370px;
    height: 48px;
}

@media (max-width: 48em) {
    .response-outcome__button-container {
        width: 80%;
        text-align: center;
    }
}

.response-outcome__button-container .button {
    font-weight: normal;
    font-family: Gotham Book;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    margin: 0;
    width: 100%;
    height: 100%;
    background-color: #1fabc9;
    padding: 15px;
    border-radius: 2px 2px 2px 2px;
    -moz-border-radius: 2px 2px 2px 2px;
    -webkit-border-radius: 2px 2px 2px 2px;
    -webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
}

/* Ripple effect */
.ripple {
    background-position: center;
    transition: background 0.8s;
}

    .ripple:hover {
        background: #009FC2 radial-gradient(circle, transparent 1%, #009FC2 1%) center/15000%;
    }

    .ripple:active {
        background-color: #53afc1;
        background-size: 100%;
        transition: background 0s;
    }