body{
	background-image: linear-gradient(#1b1919, #cc0e0e);
	background-size: 100% 200%;
	background-attachment: fixed;
	color: #fff;
	text-align: center;
	font-family: sans-serif;
	animation: enable-overflow-y linear 6s, animate-gradient linear 30s infinite;
	animation-fill-mode: both;
}
h1, h2 {
	margin-top: 0px;
	margin-bottom: 0px;
	text-align: center;
}
h1{
	font-size: 12vmin; 
	animation: fade-in-kerning ease-out 1.5s;
	animation-fill-mode: both;
	animation-delay: 0s;
}
h2{
	font-size: 5vmin;
	animation: fade-in ease-out 1s;
	animation-fill-mode: both;
	animation-delay: 0.5s;
}
a{
	color: yellow;
}


.projects{
	display: flex;
	flex-direction: row;
	align-content: flex-start;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-evenly;
}

.project{
	margin: 10px 10px 10px 10px;
	border-style: solid;
	border-radius: 5px;
	height: auto;
	width: 30%;
	min-width: 200px;
}
.project > div{
	margin: 10px 10px 10px 10px;
	
}

.button{
	color: #fff;
	font-size: 3vmin;
	padding: 10px 30px;
	margin: 10px 10px 0 0;
	cursor: pointer;
	border-color: #fff;
    background-color: transparent;
	border-style: solid;
	text-decoration: none;
}
.button:hover, .btnselected {
	color: #111!important;
    background-color: #fff!important;
	transition: 0.5s
}
.buttons{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	margin-bottom: 10vh;
	animation: buttonfadein ease-out 1s;
	animation-fill-mode: both;
	animation-delay: 1s;
	align-content: center;
	justify-content: space-evenly;
}
.apo{
	position:fixed;
    bottom:0px;
    right: -50%;
	opacity: 0;
	animation: apo linear 2s;
	animation-delay: 60s;
}
.fade-in-after-btn{
	animation: fade-in linear 1s;
	animation-delay: 1.5s;
	animation-fill-mode: both;
}
.fade-in-after-aboutme{
	animation: fade-in linear 1s;
	animation-delay: 2s;
	animation-fill-mode: both;
}

@keyframes animate-gradient{
    0%{background-position: 50% 0%}
    50%{background-position: 50% 100%}
    100%{background-position: 50% 0%}
}
@keyframes buttonfadein {
	from {margin-top: 15em; opacity: 0;}
	to {margin-top: 0.5em; opacity: 1;}
}
@keyframes fade-in {
	from {opacity: 0;!important}
	to {opacity: 1;!important}
}
@keyframes fade-in-kerning {
	from {opacity: 0; letter-spacing: 25px;}
	to {opacity: 1; letter-spacing: normal;}
}
@keyframes fade-out {
	from {opacity: 1;}
	to {opacity: 0;}
}

@keyframes reduce-margin {
	to {margin-top: 0; margin-bottom: 0;}
}
@keyframes apo {
	from {right: -50%; opacity: 1; transform: rotate(0deg)}
	to {right: 150%; opacity: 1; transform: rotate(-1000deg)}
}