/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, sans-serif;
    background-color: #d51317;
    color: white;
    display: flex;
}

/* Container */
.container {
    padding: 20px;
	opacity: 0;
    transform: translateY(0px);
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.2s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Texte */
a {
	color: white;
}

a:hover {
	color: black;
	transition: 0.3s;
}

p, h1, h2, h3, h4 {
	margin-bottom: 20px;
}

h2, h3, h4 {
	margin-top: 30px;