

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

body {
	background-image: url(../img/oxbow.jpg);
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #dcba5e;
}

#biobox {
	background-color: rgba(255,255,255,0.6);
	padding: 36px;
	-webkit-transition: background 6s, -webkit-transform 1s; /* Safari */
    transition: background 6s, transform 1s;
}


div:hover#biobox {
    background: gray;
    -webkit-transform: rotate(1deg); /* Safari */
    transform: rotate(1deg);
}