main {
    margin: 130px 0 0;
}
h1 {
    text-align: center;
    margin: 0;
    padding: 0;
    /* height: 30px;
    line-height: 30px; */
}
p.bibala {
    text-align: center;
    height: 70px;
    line-height: 70px;
    margin: 0;
    padding: 0;
} 
p.bibala img {
    width: auto;
    height: 80px;
} 

/* INDEX */ 
div.activites {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
}
div.activites div.activite {
    border: solid 1px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}
div.activites div.activite:hover {
    box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}
div.activites div.activite div.image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
div.activites div.activite div.image div.img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    transition: 0.5s;
}
div.activites div.activite:hover div.image div.img {
    transition: 0.5s;
    transform: scale(1.5);  
} 
div.activites div.infos {
    padding: 15px;
}
div.activites div.infos p {
    padding: 0;
    margin: 0;
}
div.activites div.infos p.titre {
    font-size: 1.2em;
}
div.activites div.infos p.stars {
    color:#34c2b6;
}
div.activites div.infos p.plus {
    margin: 20px 0 0 0;
}
div.activites div.infos p.plus a {
    height: 30px;
    line-height: 30px;
    border-radius: 15px;
    padding: 0 20px 0 15px;
    text-decoration: none;
    display: inline-block;
    border: solid 1px #000;
    color: #fff;
    background: #000;
    transition: 0.5s;
}
div.activites div.infos p.plus a:hover {
    color: #000;
    background: #fff;
    transition: 0.5s;
}
div.activites div.infos p.plus a span {
    line-height: 20px;
    display: inline-block;
    margin: 0 10px 0 0;
}

/* ACTIVITE */
p.h2-like {
    text-align: center;
}
p.ariane {
    margin: 0;
    padding: 5px 15px;
}
p.ariane a {
    color: #000;
}
p.ariane a:hover {
    text-decoration: none;
}
p.ariane a:last-child {
    text-decoration: none;
    color:#34c2b6;
}
article.activite {
    margin: -30px 0 0;
}
article.activite div.top {
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center center;
}
article.activite div.top h1 {
    color: #fff;
    font-size: 4em;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.9);
}
article.activite div.content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px;
}
article.activite div.content a {
    color: #000;
}
article.activite div.content a:hover {
    text-decoration: none;
}

@media screen and (max-width: 600px) {
    div.activites {
        grid-template-columns: repeat(2, 1fr);
    }
    article.activite div.content {
        padding: 20px;
    }
}
@media screen and (max-width: 400px) {
    div.activites {
        display: block;
    }
    article.activite div.top h1 {
        font-size: 2em;
    }
}
