h2 {
    color: white;
    margin-left: 46.5%;
    margin-top: 20px;

}

p {
    color: white;
    padding: 100px;
    margin-left: 40%;
    font-size: 130%;
    text-shadow: #000000 1px 1px, #000000 -1px 1px, #000000 -1px -1px, #000000 1px -1px;
}



footer {
    color: gray;
    text-align: center;
    border-top: solid;
    border-color: gray;
    margin-top: 59px;
    padding: 10px;
    font-style: italic;
}

.image1 {
    width: 35%;
    position: absolute;
    right: 62.5%;
    top: 22%;

}

cite {
    margin: 0;
    padding: 0;
    color: darkgray;
    position: absolute;
    top: 82%;
    left: 42.5%;
    font-size: 13px;
}

quote {
    color: antiquewhite;
    text-align: center;
    border-color: gray;
    position: absolute;
    font-style: italic;
    top: 60%;

}

/*---------------------FAIRE SE RETOURNER UNE IMAGE------------------------ */
.box {
    background-color: transparent;
    width: 250px;
    height: 160px;
    margin-left: 40%;

    perspective: 1000px;
}

.box-inner {
    position: relative;
    width: 100%;

    text-align: center;
    transition: transform 0.5s;
    transform-style: preserve-3d;
}

.box:hover .box-inner {
    transform: rotateY(180deg);
}

.box-front,
.box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.box-front {
    background-color: #cccccc;
    color: #111111;
}

.box-back {
    background-color: #8ebf42;
    color: #eeeeee;
    transform: rotateY(180deg);
}

.box-front img {
    width: 100%
}

.box-back img {
    width: 100%
}
