.cssCenteredBox {
    width: 75%;
    background-color: #325454;
    color: white;
    font-size: 16px;
    padding: 10px;
    margin: 20px auto;
    border-radius: 10px;
    box-sizing: border-box;
    line-height: 1.5;
}

/* Apply a fixed width on screens wider than 768px (typical tablet size and up) */
@media (min-width: 800px) {
    .cssCenteredBox {
        width: 450px;
    }
}

.cssMeerInfoLink {
    color: yellow;
    font-size: 13px;
    text-decoration: underline;
}

    .cssMeerInfoLink:hover {
        color: yellow;
        font-size: 13px;
        text-decoration: none;
    }
