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

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    #background-color: #f5f5f5;
    background: linear-gradient(#6ABD94, #D39CC7);
}

.container {
    text-align: center;
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

h1 {
    margin-bottom: 20px;
}

.link-button {
    display: block;
    padding: 15px;
    margin: 10px 0;
    background-color: #ffffff;
    color: #6abd94;
    text-decoration: none;
    border-radius: 80px;
    font-size: 18px; /* Augmente la taille du texte */
    font-weight: bold; /* Met le texte en gras */
    transition: background-color 0.3s;
}

.link-button:hover {
    background-color: #d39cc7;
}

.logo {
    width: 150px; /* Ajuste la largeur */
    height: auto; /* Maintient le ratio de l'image */
    margin-bottom: 0px;
}


