@import url('https://fonts.googleapis.com/css?family=Oswald:200,300');
* {
	font-family: 'Oswald', sans-serif;
	color: #424242;
	text-transform: uppercase;
	font-size: 24px;
    box-sizing: border-box;
    text-align: center;
	letter-spacing: 0.5px;
	font-weight: 200;
}
body {
	margin: 0;
	height: 100%;
	background: linear-gradient(146deg, #dbe5e0, #8eb8c3, #eae7c9);
	background-size: 900% 900%;

	-webkit-animation: BackgroundAnimation 25s ease infinite;
	-moz-animation: BackgroundAnimation 25s ease infinite;
	animation: BackgroundAnimation 25s ease infinite;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.container {
	padding: 40px;
}

.kachel {
	background-color: #fff;
	width: 100%;
	max-width: 400px;
	padding: 60px 40px 60px 40px;
	margin: 0 auto;

	-webkit-box-shadow: 0px 0px 80px -20px rgba(66,66,66,1);
	-moz-box-shadow: 0px 0px 80px -20px rgba(66,66,66,1);
	box-shadow: 0px 0px 80px -20px rgba(66,66,66,1);
}

.profilepicture{
	position: relative;
	border-radius: 50%;
	width: 50%;
	height: auto;
	padding-top: 50%;
	margin: 0 auto;
	border: 3px solid #ececec;
	background-image: url("../assets/marmotpaw.png");
	background-size: 115%;
	background-position: center bottom;
}

h1 {
	font-weight: 300;
	margin: 0;
}

h2, h3 {
	font-weight: 200;
	margin: 0;
	color: #929292;
	font-size: 12px;
	line-height: 20px;
}

.btn {
	width: 100%;
	max-width: 400px;
	margin: 40px auto;
	border: 3px solid #fff;
	position: relative;
	overflow: hidden;
	height: 70px;
}
.btn a {
	display: block;
	position: relative;
	margin: 20px;
	color: #fff;
	text-decoration: none;
	font-size: 20px;
	line-height: 24px;
	z-index: 2;
    -webkit-transition: all .2s;
    transition: all .2s;
    -webkit-transition-timing-function: cubic-bezier(.24,.7,0,.98); /* Safari and Chrome */
    transition-timing-function: cubic-bezier(.24,.7,0,.98);
}
.btn:after{
	position: absolute;
	height: 0%;
	width: 0%;
	left: 50%;
	content: '';
    bottom: 0;
    opacity: 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	cursor: pointer;
	z-index: 1;
    -webkit-transition: all .4s;
    transition: all .4s;
    -webkit-transition-timing-function: cubic-bezier(.24,.7,0,.98); /* Safari and Chrome */
    transition-timing-function: cubic-bezier(.24,.7,0,.98);

}
.btn.facebook:after {
	background-color: #405798;
	background-image: url("../assets/facebook.png");
}
.btn.vimeo:after {
	background-color: #52b5e5;
	background-image: url("../assets/vimeo.png");
}
.btn:hover:after {
    bottom: 0;
    left: 0;
    opacity: 1;
	height: 100%;
	width: 100%;
}
.btn:hover a {
	opacity: 0;
}

@-webkit-keyframes BackgroundAnimation {
    0%{background-position:0% 10%}
    50%{background-position:100% 91%}
    100%{background-position:0% 10%}
}
@-moz-keyframes BackgroundAnimation {
    0%{background-position:0% 10%}
    50%{background-position:100% 91%}
    100%{background-position:0% 10%}
}
@keyframes BackgroundAnimation { 
    0%{background-position:0% 10%}
    50%{background-position:100% 91%}
    100%{background-position:0% 10%}
}

@media (min-width: 500px) {
	.btn {
		width: 400px;
		height: 90px;
	}
	.kachel {
		width: 400px;
	}
	.btn a {
		font-size: 32px;
		margin: 30px;
	}
	h2, h3 {
		font-size: 16px;
		line-height: 20px;
	}
	.container {
		padding: 60px;
	}
}