/**** Reset ****/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/**** Style général de la page ****/

body {
    width: 100%;
    min-height: 100vh;
    background-color: #f7f7f7;
}

.cursor--1 {
	position: fixed;
	background-color: #ffd700;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	transition: all 0.05s ease-out;
}
.cursor--1.scale {
	width: 50px;
	height: 50px;
}
.cursor--2 {
	position: fixed;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 2px solid #fdc127;
	transform: translate(-50%, -50%);
	transition: all 0.2s ease-out;
}