/* styles.css */
body {
    background-color: #4ebddb
}

.limited-width {
    max-width: 80%;
    margin: auto; /* optional, centers the element */
    padding: 10px;
    /* Only left and right borders */
    border-left: 2px solid black;   /* change "blue" to any color */
    border-right: 2px solid black; /* you can use different colors */
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    background-color: white;
}

.breakable-words {
    word-wrap: break-word;      /* legacy support */
    overflow-wrap: break-word;  /* modern browsers */
}
