* {
    box-sizing: border-box;
}



div {
    text-align: justify;
}

div img {
    display: inline-block;
    width: 100px;
    height: 100px;
}

div:after {
    content: '';
    display: inline-block;
    width: 100%;
}

body {
    font-family: Arial;
    padding: 10px;
    background: white;
 	margin: 43px;
}



/* max-width will resize images according to screen size, but never go bigger than the image is supposed to be */
img {
    max-width: 100%;
    height: auto;
}

/* Header/Blog Title */
.header {
    padding: 25px;
    color: #006A31;
    text-align: center;
    background: #EDEDED;
    font-family: Georgia;
    border-style: double;
    border-color: #006A31;	
}

.header h1 {
    font-size: 100px;
}


/* Style the top navigation bar */
.topnav {
    overflow: hidden;
    background-color: #333;
}

/* Style the topnav links */
.topnav a {
    float: left;
    display: block;
    color: #006A31;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* Change color on active */
.topnav a.active {
    background-color: LightPink;
    color: black;
}


/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
    float: left;
    width: 75%;
}

/* Right column */
.rightcolumn {
    float: left;
    width: 25%;
    background-color: #EDEDED;
    padding-left: 20px;
}

/* Fake image */
.fakeimg {
    background-color: #aaa;
    width: 100%;
    padding: 20px;
}

/* Pink Box */
.pinkbox {
    margin-top: 10px;
    background-color: LightPink;
    width: 100%;
    padding: 10px;
}

/* Gray Box */
.graybox {
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: #333;
    color: white;
    width: 100%;
    padding: 10px;
}

/* Body Link Styles */
a.bodylink:link {
    color: green;
    text-decoration: none;
}

a.bodylink:visited {
    color: green;
    text-decoration: none;
}

a.bodylink:hover {
    color: green;
    text-decoration: underline;
}

/* Footer Link Styles */
a.footlink:link {
    color: white;
    text-decoration: none;
}

a.footlink:visited {
    color: white;
    text-decoration: none;
}

a.footlink:hover {
    color: green;
    text-decoration: underline;
}


/* Add a card effect for articles */
.card {
    background-color: #EDEDED;
    padding: 20px;
    margin-top: 20px;
}

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

/* Footer */
.footer {
    padding: 20px;
    text-align: center;
    background: #333;
    margin-top: 20px;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
    .leftcolumn, .rightcolumn {   
        width: 100%;
        padding: 0;
    }
}

/* Responsive layout - when the screen is less than 500px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 500px) {
    .topnav a {
        float: none;
        width: 100%;
    }
}

/* The following is for a responsive image gallery */
.imagerow {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
}

/* Create two equal columns that sits next to each other */
.imagecolumn {
    -ms-flex: 50%; /* IE10 */
    flex: 50%;
    max-width: 50%;
    padding: 0 4px;
}

.imagecolumn img {
  margin-top: 100px;
  margin-bottom: 100px;
  margin-right: 150px;
  margin-left: 80px;
    vertical-align: middle;
}


/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
    .imagecolumn {
        -ms-flex: 100%;
        flex: 100%;
        max-width: 100%;
    }
}