body{
    margin: 0;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
}

.container{
    width: 100%;
    padding: 0 20px;
    max-width: 1200px;
    margin: auto;
}

h1{
    text-align: center;
    margin: 50px 0;
    font-size: 35px;
    color: rgb(142, 197, 73);
}

.outils-list{
    display: flex;
    flex-wrap: wrap;
	margin-bottom: 50px;
    justify-content: center;
}

.outil{
    width: 31.33%;
    padding: 30px;
    margin: 15px 1%;
    text-align: center;
    border-radius: 15px;
    background: #fff;
    box-sizing: border-box;
    webkit-box-shadow: 0 0 20px 2px rgba(1,2,2,.2);
    -moz-box-shadow: 0 0 20px 2px rgba(1,2,2,.2);
    box-shadow: 0 0 20px 2px rgba(1,2,2,.2);
    transition: all .2s ease-in-out;
    position: relative;
}

.outils-list .img {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.outils-list img {
    width: 100%;
    height: auto;
    max-width: 200px;
    transition: all .2s ease-in-out;
}

.outils-list h2 {
    display: none;
}

.outil > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}

.outil:hover img{
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .outil {
        width: 46%;
        margin: 15px 2%;
    }
}

@media (max-width: 500px) {
    .outil {
        width: 90%;
        margin: 15px 5%;
    }
}