
.bouton{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    gap: 2rem;
    height: 100%;
    padding: 2rem 3rem;
}

button{
    padding: 2rem 4rem;
    font-size: 2rem;
    font-weight: bold;
    border: 0.1rem solid transparent;
    border-radius: 2rem;
    background-color: black !important;
    color: white;
    min-width: 30rem;
    transition: 0.2s ease-in;
}

button:hover{
    background-color: white!important;
    color: black;
    cursor: pointer;
    border: black solid 0.1rem;
    box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.2);
    transform: scale(1.2);
}