/* begin Page */
/* Created by Artisteer v3.1.0.55575 */
      body,
html {
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: 'roboto', sans-serif;
	background: rgb(253, 255, 183);
	background: -moz-linear-gradient(-45deg, rgba(253, 255, 183, 1) 0%, rgba(255 , 224, 255, 1) 100%);
	background: -webkit-linear-gradient(-45deg, rgba(253, 255, 183, 1) 0%, rgba(255 , 224, 255, 1) 100%);
	background: linear-gradient(135deg, rgba(253, 255, 183, 1) 0%, rgba(255 , 224, 255, 1) 100%);
}


@keyframes blink {50% { color: transparent }}
.dot { animation: 1s blink infinite }
.dot:nth-child(2) { animation-delay: 250ms }
.dot:nth-child(3) { animation-delay: 500ms }


h1 {
	font-size: 2em;
	margin: 10px 0 0 0;
	font-weight: lighter;
	text-transform: uppercase;
	color: #000;
}

p {
	font-size: 1.2em;
	font-weight: light;
	color: #010101;
}

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);
	}
}

.site {
	color: blue;
	//text-decoration: underline;
	
	}
	
	
.container {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.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;
}

.suppoprt-me {
	display: inline-block;
	position: fixed;
	bottom: 10px;
	left: 10px;
	width: 20vw;
	max-width: 250px;
	min-width: 200px;
	z-index: 9;
	img {
		width: 100%;
		height: auto;
	}
	

}
