/****** BASICS ******/
    body {
        margin: 0;
        background-image: url(/backgrounds/peaches.jpg);
        background-color: rgb(145, 123, 105);
    }

/***** CONTAINER *****/
    .recs {
       width: 900px;
        height: 90vh;
        border-width:7px;
        border-style:solid;
        border-image: url(/backgrounds/squiggle.png) 8 fill round;
        overflow-y:auto;
        margin: 25px auto;
        padding: -5px;
        overflow: hidden;
    }

/***** MAIN CONTENT *****/
    main {
        background-color: #febbb4;
        padding: 15px;
        font-family: courier;
        border: 2px #6b3e2e dotted;
        width: 865px;
        height: 790px;
        overflow: scroll;
    }

    p {
        font-size: 1em;
    }

    hr {
        border-top: peachpuff 2px dotted;
    }