#hero {
    background: url("../img/hero.jpg");
    background-size: cover;
    background-position: center center;
    height: 100vh;
    text-align: center;
    width: 100%;
}

#hero>h1 {
    position: relative;
    top: 40vh;
    color: white;
    font-size: 50px;
    z-index: 2;
}

#hero>h3 {
    position: relative;
    top: 41vh;
    color: white;
    font-size: 40px;
    z-index: 2;
}

#hero>a {
    position: relative;
    top: 42vh;
    color: white;
    border: solid 2px white;
    border-radius: 20px;
    font-size: 25px;
    z-index: 2;
    font-weight: 100;
    padding-right: 10px;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    transition: color, border, background-color;
    transition-duration: 0.2s;
    transition-delay: 0.05s;
}

#hero>a:hover {
    color: black;
    border: solid 2px black;
    background-color: white;
}

.fond {
    position: absolute;
    z-index: 1;
    top: 0;
    width: 100%;
    height: 106vh;
    background-color: black;
    opacity: 0.3;
}

#decouvrir {
    display: flex;
    justify-content: space-around;
    margin-top: 5vh;
    padding-top: 5vh;
    margin-bottom: 10vh;
}

#decouvrir>section {
    margin: 20px;
}

#decouvrir>section>a {
    color: black;
    border: solid 2px black;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 100;
    padding-right: 10px;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    transition: color, border, background-color;
    transition-duration: 0.2s;
    transition-delay: 0.05s;
    text-align:center;
    margin-left: 35%;
}

#decouvrir>section>a:hover {
    color: white;
    border: solid 2px white;
    background-color: black;
}

@media screen and (max-width: 1025px) {
	#decouvrir{
        display: flex;
        flex-direction: column;
    }

    #decouvrir>section>a{
        margin-left: 30%;
    }
}