* {
box-sizing: border-box;
}

/*Sets up area on page for columns*/
.col-container {
display: table;
width: 100%;
border:10px solid white;
/*word-wrap: break-word;*/
}

/*First column controls*/
.col_1 {
display: table-cell;
padding: 16px;
width:60%;
}

h2 {
color:white;
font-family:typewriter;
font-size:30px;
}


/*Second column controls*/
.col_2 {
display: table-cell;
padding: 16px;
width:40%;
}

/*Image control to be on left side*/
.img_left{
width:55%;
border:2px #FFDBBF;
float:left;
margin:10px;
}
/*Image control to be on right side*/
.img_right{
width:55%;
float:right;
margin:5px;
}

.img_center{
width:90%;
	display: block;
	margin-left:auto;
	margin-right:auto;
border: 1px solid #FFDBBF;
}

/* If the browser window is smaller than 600px, make the columns stack on top of each other */
@media only screen and (max-width: 700px) {
.col_1 {
display: block;
width: 100%;
}

.col_2 {
display: block;
width: 100%;
}

.img_left{
width:95%;

}

.img_right{
width:100%;
}
}