/* Newspaper Styling Elements */
header h1{
    font-weight: 900;
    font-size: 80px;
    text-transform: uppercase;
    }

header p{font-size:40;}

header {text-align: center;}

hr.rounded {
    border-top: 8px solid #bbb;
    border-radius: 5px;
  }


/* Floating elements */
aside {
    float: right;
    margin: auto;
    width: 20%;
}

/* Likeley needs a position and margin to prevent collison */
article {
    float: left;
    margin: auto;
    width: 69%;
    border-right: solid;
    border-left: solid;
} 

nav {
    float: left;
    margin: auto;
    width: 10%;
}
footer {
    position: fixed; 
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
}

/* width had to be fiddled with to allow borders */
@media screen and (max-width: 600px) {
    /* Todo, collapsible navigation */
    nav { float: none;
        margin: auto;
        width: 100%;
    }
    aside {float: none;
    margin: auto;
    width: 100%;
    }
    article {
        float: none;
        margin: auto;
        width: 100%;
        border-left: none;
        border-right: none;
    }
  }