/*
.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

font-family: "Poppins", sans-serif;

.josefin-sans-<uniquifier> {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

font-family: "Josefin Sans", sans-serif;
*/
html {
    background-color:  #f2f2f2;
}

/* content can be removed 
#content {
    width: 960px;
    margin: auto;
}
*/
h2 {
   font-family: "Josefin Sans", sans-serif; 
}

p {
    font-family: "Poppins", sans-serif;  
    text-align: justify;
}

.story-img {
    float: left;
    width: 200px;
    margin: 10px 10px 0px 0px;
    border: 10px solid #E6006B;
}
}

header {
    width: 100%;
    background-color: #f2f2f2;
}

.header-content {
    width: 960px;
    background-color: #f2f2f2;
    /*padding: 10px 10px 20px 10px; /* 1st#= top 2nd#= right 3rd#= bottom 4th#= left */
    color: #fff;
    margin: auto;
}

nav {
    width: 100%;
    background-color: #333;
}

.nav-content {
    width: 960px;
    color: #fff;
    margin: auto;
}

/* navbar css starts here! */
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
  font-family: "Poppins", sans-serif;
}

li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover:not(.active) {
  background-color: #111;
}

.active {
  background-color: #E6006B;
}
/* navbar css ends here! */

main {
    width: 940px;
    background-color:  #f2f2f2;
    margin: auto;
}

.main-content {
    width: 620px;
    background-color:  #f2f2f2;
    float: left;
    padding: 10px 10px 20px 10px;
}

.aside-content {
    width: 300px;
    background-color:  #f2f2f2;
    float: left;
    padding: 10px 10px 20px 10px;
}

#footer {
    width: 100%;
    background-color: #0d0d0d;
    clear: both;
}

.footer-content {
    width: 960px;
    background-color: #0d0d0d;
    clear: both;
    color: #fff;
    margin: auto;
}

* {
  box-sizing: border-box;
}

/* Create two unequal columns that floats next to each other */
.column {
  float: left;
  padding: 10px;
  height: 300px; /* Should be removed. Only for demonstration */
}

.left {
  width: 65%;
  background-color: #0d0d0d;
}

.right {
  width: 35%;
  background-color: #0d0d0d;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}