@import url("https://fonts.googleapis.com/css?family=Anton|Bitter|Crimson+Text|Josefin+Slab|Libre+Baskerville|Lobster|Merriweather|Merriweather+Sans|Montserrat|Noto+Serif|Open+Sans:300|Oswald*700|Tittillium+Web");


body,
html {
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: 'Helvetica', sans-serif;
	background: rgb(255, 153, 0);
	background: -moz-linear-gradient(0deg, rgba(26, 188, 156, 1) 0%, rgba(142, 68, 173, 1) 100%);
	background: -webkit-linear-gradient(0deg, rgba(204, 122, 0, 1) 0%, rgba(142, 68, 173, 1) 100%);
	background: linear-gradient(0deg, rgba(83, 53, 0, 1) 15%, rgba(255, 153, 0, 1) 120%);
}

#logo {
	/*transition: opacity 2s; */
}
img {
    max-width:100%;
}

h1 {
	font-family:'Anton', san-serif;
	font-size: 5em;
	margin: 10px 0 0 0;
	font-weight: lighter;
	text-transform: uppercase;
	color: #FF9900;
}

h3 {
	font-family: 'Crimson Text', serif;
	font-size: 40px;
	margin: 10px 0 0 0;
	font-weight: lighter;
	text-transform: uppercase;
	color: #FF9900;
}

p {
	font-size: 12px;
	font-weight: light;
	color: #333333;
}

span a {
	font-size: 18px;
	color: #cccccc;
	text-decoration: none;
	margin: 0 10px;
	transition: all 0.4s ease-in-out;
	&:hover {
		color: #ffffff;
	}
}

@keyframes float {
	0% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(0px);
	}
	50% {
		box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);
		transform: translatey(-20px);
	}
	100% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(0px);
	}
}

.container {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	
}
.container:hover {
	//opacity: 0.6;
}
.mFade:hover {
	opacity: 0;
}

/*
div {
  width: 100px;
  height: 100px;
  background: red;
  -webkit-transition: opacity 2s; 
  transition: opacity 2s;
}

div:hover {
  opacity: 0;
}


*/

.avatar {
	width: 150px;
	height: 150px;
	box-sizing: border-box;
	border: 5px white solid;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
	transform: translatey(0px);
	animation: float 6s ease-in-out infinite;
	img { width: 100%; height: auto; }
}

.content {
	width: 100%;
	max-width: 600px;
	padding: 20px 40px;
	box-sizing: border-box;
	text-align: center;
}
.credit {
	font-family: 'Crimson Text', serif;
	font-size: 10px;
	color: #533200;
}