body{
    font-family: "Poppins",   sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, rgb(194, 243, 70)  , white);
}
h1{
    text-align: center;
    background: transparent;
    color: white;
    padding: 20px;
    margin: 0;
}
.colonne{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin: 60px auto;
    width: 100%;
}
.colon{
    position: relative;
    width: 500px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(163, 254, 84, 0.6);
    cursor: pointer;
    transition: transform 0.3s ease;
}
.colon:hover{
    transform: scale(1.05);
}
.colon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.colon h2{
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    background: transparent;
    color: #fff;
    padding: 15px;
    font-size: 1.5em;
    letter-spacing: 1px;
}