.page-accueil .outils {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    margin-bottom: 50px;
    row-gap: 10px;
}

.page-accueil .outils a {
    text-decoration: none;
    padding: 10px 20px;
    background-color: #F2E25B;
    color: #000000!important;
    font-weight: 600;
    width: 100%;
    text-align: center;
    transition: all 0.2s ease-in-out;
}

.page-accueil .outils a:hover {
    background-color: transparent;
    color: #F2E25B!important;
    box-shadow:
            0 0 10px rgba(242, 226, 91, 0.2),
            0 0 25px rgba(242, 226, 91, 0.15),
            inset 0 0 10px rgba(242, 226, 91, 0.05);
}