body {
    background-color: #34373A !important;
    color: white !important;
    font-family: 'Arial', sans-serif !important;
    height: 100vh; /* Hauteur de la page pour centrer */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 !important;
}
.site-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.site-header:hover{
    animation: rubberBand; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 1s; /* don't forget to set a duration! */
}
.site-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%; /* Rend l'image ronde */
    margin-right: 15px;
}
h1 {
    font-size: 2rem;
}
p {
    font-size: 1.2rem;
}
.btn-discord {
    background-color: #5865F2;
    border: none;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.btn-discord:hover {
    background-color: #4752C4;
    text-decoration: none;
    color: white;
}
.btn-discord img {
    width: 24px;
    margin-right: 10px;
}