@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-image: linear-gradient(to right, #27242d 0%, rgb(0, 0, 0) 100%);
    color: #fff;
    text-align: center;
}

#options {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40vh;
    margin: 0;
}

.button {
    --bezier: cubic-bezier(0.22, 0.61, 0.36, 1);
    --edge-light: hsla(0, 0%, 50%, 0.8);
    --text-light: rgba(255, 255, 255, 0.4);
    --back-color: 240, 40%;

    cursor: pointer;
    padding: 0.7em 1.5em; 
    border-radius: 0.5em;
    min-height: 1.3em;
    min-width: 3em;
    display: flex;
    align-items: center;
        text-decoration: none; /* Enlever la ligne sous les liens */
    margin: 2%;

    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 1;
    font-weight: bold;

    background: linear-gradient(
        140deg,
        hsla(var(--back-color), 50%, 1) min(2em, 20%),
        hsla(var(--back-color), 50%, 0.6) min(8em, 100%)
    );
    color: hsla(0, 0%, 90%);
    border: 0;
    box-shadow: inset 0.4px 1px 4px var(--edge-light);

    transition: all 0.1s var(--bezier);
}

.button:hover {
    --edge-light: hsla(0, 0%, 50%, 1);
    text-shadow: 0px 0px 10px var(--text-light);
    box-shadow: inset 0.4px 1px 4px var(--edge-light),
        2px 4px 8px hsla(0, 0%, 0%, 0.295);
    transform: scale(1.1);
}

.button:active {
    --text-light: rgba(255, 255, 255, 1);

    background: linear-gradient(
        140deg,
        hsla(var(--back-color), 50%, 1) min(2em, 20%),
        hsla(var(--back-color), 50%, 0.6) min(8em, 100%)
    );
    box-shadow: inset 0.4px 1px 8px var(--edge-light),
        0px 0px 8px hsla(var(--back-color), 50%, 0.6);
    text-shadow: 0px 0px 20px var(--text-light);
    color: hsla(0, 0%, 100%, 1);
    letter-spacing: 0.1em;
    transform: scale(1);
}

p {
    display: flex;
    justify-content: center;    
    align-items: center;
    margin: 0;
    padding-left: 10vw;
    padding-right: 10vw;
    padding-top: 2vh;
}