body {
	background: #fafafa;
}

.column {
  float: left;
  width: 50%;
  padding:5px;
}

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

.row {
  display: flex;
}

.column {
  flex: 50%;
}

img {
    max-width:100%;
    height:auto;
    border-radius: 10px;
}

.box {
	max-width:100%;
	height:auto;
	border:#000 solid 0px;
	padding:10px;
}

.box img {
	display: block;
	margin-left: auto;
	margin-right: auto
}

#riseup {
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
#riseup:hover {
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}