@keyframes SlideFromBottom {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes SlideFromBottomFadePlus {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    40% {
    	opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

body{
	background-repeat: no-repeat;
	font-family: 'Roboto', sans-serif;
	text-align: left;
	background-image: url("images/bg.jpg");
	background-size: cover;
	}
.col-1-3{
	animation: 2s SlideFromBottomFadePlus;
}

.page{
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.push_footer{
	flex-grow: 1;
}

p{
	text-align: center;
	margin: 10px;
	font-size: 30px;
	color: #BF8A56;
}
.maintext{
	font-family: 'VT323', monospace;
}
h1{
	margin: 0px;
}
header{
	/* Le titre */
	animation: 1s ease-out SlideFromBottom;
	font-size: 40px;
	font-family: 'Roboto', sans-serif;
	text-shadow: 0px 0px 2px rgb(0,0,0);
	word-spacing: 10px;
	text-align: center;
	color: #F5F550;
	margin: 0px;
	margin-top: 5px;
	text-transform: uppercase;
	cursor: default;

}
footer{
	border-top: solid #F5F550;
}
footer p{
	font-size: 16px;
}
a{
	color: #DE4B48;
	text-decoration: none;
	font-weight: bold;
	transition: all 0.3s ease;
}

a:hover{
	color: #365FD9;
}
.box{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.download{ 
	font-size: 30px;
	text-align: center;
	padding: 30px;
	margin: 50px;
	width: 100px;
	background: radial-gradient(#00ADFF , #002B40);
	background-color: #F5F550;
	border: solid #000 1px;
	transition: 0.3s;
}
.download:hover{
	padding: 30px 60px 30px 60px;
}
img{
	height: 50px;
	margin-top: 10px;
}
.shadow{
	box-shadow: 0px 0px 5px #000;
}