html, body {
    background-color: #f1f2ee;
    font-family:  "Open Sans", sans-serif;
}

.back-holder {
    display: flex;
    width: 100%;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.back-button {
    border: none;
    border-radius: 25px;
    padding: 8px;
    padding-right: 30px;
    padding-left: 30px;
    font-size: 1.0rem;
    background-color: #1d2d44;
    color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, .1);
    max-width: 200px;
    text-decoration: none;
}

.back-button:hover {
    background-color: #3e5c76;
    color: #fff;
}

.header-holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 20px;
}

.header-holder span {
    font-size: 2.0rem;
}

.paragraph-header {
    font-weight: bold;
}


@media all and (min-width: 800px) {
    .paragraph-header {
        width: 50%;
    }

    .paragraph-content {
        width: 50%;
    }
}

@media all and (max-width: 800px) {
    .paragraph-header {
        width: 100%;
        padding: 20px;
    }

    .paragraph-content {
        width: 100%;
        padding: 20px;
    }
}


.content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}