main {
    max-width: 1500px;
}
section {                       /*each news article is its own section*/
    font-size: large;
    min-height: 110px;
    width: 65%;
    padding: .3em;
    margin-bottom: 1em;
    border-style: groove;
    border-color: gold;
    background-color: rgba(0, 0, 0, 0.5);
    border-width: 5px 2px;
    border-radius: 25px;
}
section h2 {                    /*Headline formatting*/
    padding-top: .3em;
    padding-left: .5em;
}
.date { text-indent: 1em; }
section p {
    padding: .5em;
}
section img {
    float: right;
    padding: .5em;
}

/*styling for the newsletter form*/
aside {
    float: right;
    width: 30%;
    margin-bottom: .5em;
    border-style: groove;
    border-color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border-width: 5px 2px;
    border-radius: 25px;
}
aside h2 {
    padding: .5em;
    font-size: 140%;
    text-align: center;
}
aside h3 {
    font-weight: 400;
    font-size: 100%;
    text-align: center;
    padding: .5em;
}
aside label {
    float: left;
    width: 8em;
    text-align: right;
}
aside input {
    margin-left: 1em;
    margin-bottom: .5em;
}
#submit,#reset {
    padding: .2em;
}
#submit { margin-left: 10em; }

@media only screen and (max-width: 1282px) {    /*adjust spacing*/
    main { width: 100%; }
    section {
        width: 67%;
        margin-bottom: .5em;
    }
    #submit { margin-left: 3em;}
}

@media only screen and (max-width: 810px) {     /*stop float of the form and adjust some formatting of the form*/
    aside {
        float: none;
        width: 95%;
        margin:auto;
    }
    section {
        width: 97%;
        margin: auto;
    }
    aside h3 {
        text-align: left;
        padding-left: 1em;
    }
}