.pageEval {
    position: relative;

    margin: 20px auto;   /* top/bottom  right/left */
    padding: 10px 40px;
    width: 1080px;
    box-sizing: border-box;	/* the width: 100% does not take into account padding and border values; this makes sure it does! */

    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;

    background-color: var(--color-white);
    color: var(--color-dark);
    border: 2px solid var(--color-blue);
    border-radius: 5px;

}
@media screen and (max-width: 1100px) {
    .pageEval {
	width: 100%;
    }
}


