
* {
box-sizing: border-box;
}

/*Sets up area on page for columns*/
.col-container {
color:red;
display: table;
width: 100%;
/*word-wrap: break-word;*/
}
/*First column controls*/
.col_1 {
display: table-cell;
padding: 16px;
width:60%;
text-align: justify;
text-justify: inter-word;
}
/*Second column controls*/
.col_2 {
display: table-cell;
padding: 16px;
width:40%;
}

/*Image control to be on left side*/
.img_left{
width:35%;
border:1px solid red;
float:left;
margin:7px;
}
/*Image control to be on right side*/
.img_right{
width:35%;
border:1px solid red;
float:right;
margin:7px;
}

/* If the browser window is smaller than 600px, make the columns stack on top of each other */
@media only screen and (max-width: 600px) {
.col_1 {
display: block;
width: 100%;
}

.col_2 {
display: block;
width: 100%;
}

.img_left{
width:100%;
border:1px solid red;
}

.img_right{
width:100%;
border:1px solid red;
}
}