@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
body {
	background: linear-gradient(-45deg, #064195, #042a5f);
	background-size: 400% 400%;
	animation: gradient 7s ease infinite;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	padding-top: 0.5vh;
}
h1 {
	font-family: LexendM;
	color: white;
	font-size: 48px;
	padding: 2vh 0;
	text-align: center;
}
img {
	width: clamp(150px,11vw,380px);
    height: auto;
}
#jeux {
	height: 75%;
	width: 90%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
}
#jeux a {
	margin: 0 0 10px 0;
}
#jeux img {
	transition: transform 0.5s;
	width: clamp(185px,17vw,490px);
}
#jeux img:hover {
	transform: scale(1.5);
	z-index: 1;
}
button {
    font-size: clamp(1rem,2vw,2rem);
    width: auto;
    padding: 15px;
    margin-bottom: 1vh;
    cursor: pointer;
    font-family: Agency_Gras;
    border: 5px solid;
    color: white;
    transition: all 0.5s;
}
a > .conx {
	border-color: #03224c;
	background: #03224c;
	box-shadow: 0px 0px 30px rgba(0, 0, 0, 1);
}

a > button.conx:hover {
	color: #03224c;
	background: white;
}

a > .deconx {
	border-color: red;
	background: red;
	width: 240px;
	box-shadow: 0px 0px 30px rgba(0, 0, 0, 1);
}

a > button.deconx:hover {
	color: red;
	background: white;
}
.copyright {
	color: white;
	font-family: Agency_Normal;
	font-size: clamp(16px,.5vw,10000px);
}