html,
body {
    margin: 0;
    padding: 0;
}


h1 {
    color: silver;
    transform-style: flat;
    font-size: 2em;
    text-align: center;
    margin-top: 3em;
}

.h1 {
    color: red;
}

.h2 {
    color: silver;
    margin: 0em;
}

h3 {
    color: silver;
    margin: 0em;
}

p {
    color: silver;
    text-align: justify;
    margin: 0.3em;
    padding: 2em;
    font-size: 1em;
}

.p {
    color: silver;
    text-align: center;
    font-size: 1em;
    padding: 0em;
    margin-bottom: 1em;
}

@media only screen and (max-width: 350px) {
    .p {
        font-size: 0.8em;
    }
}

@media only screen and (min-width: 350px) and (max-width: 600px) {
    .p {
        font-size: 0.8em;
    }
}

.p1 {
    color: red;
    text-align: center;
    margin: 0em;
    padding: 0.3em;
}

.p3 {
    color: mediumseagreen;
    padding: 0.6em;
    margin-bottom: 0.55em;
}

.p4 {
    color: #3AF24B;
}

#bg_container {
    height: 100%;
    width: 100%;
}

#bg {
    width: 100%;
    height: 80%;
}

ol {
    text-align: center;
    font-size: 2em;
    margin: 0em;
    color: azure;
    overflow: hidden;
}

* {
    font-family: 'Noto Sans JP', sans-serif;
}

section {
    text-align: left;
    margin-bottom: 3em;
    margin-top: 3em;
}

section.align_left {
    text-align: left;
}

section.align_center {
    text-align: center;
}

section.align_right {
    text-align: right;
}

.container_bloc {
    display: inline-block;
    width: 100%;
    height: fit-content;
    padding: 0em;
    background: #6D071A;
    box-sizing: border-box;
    box-shadow: 0 0.3em 0.3em rgb(0 0 0);
}

.image_bloc_left,
.image_bloc_right {
    float: left;
    text-align: left;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.image_bloc_right {
    float: right;
    width: 50%;
}

.text_bloc_left,
.text_bloc_right {
    width: 50%;
    float: right;
}

.text_bloc_right {
    float: right;
}

.text_bloc_center {
    float: center;
}

.card {
    margin: 0 auto;
    width: 16em;
    height: 20em;
    perspective: 1000em;
    text-align: center;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    height: 100%;
    width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    padding: 1em;
    border-radius: 1em;
    box-shadow: 0 4em 8em 0 rgba(0, 0, 0, 0.2);
}

.card-front {
    background-image: url('../image_du_site/faucheuse.png');
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
}

.card-front:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0em;
    background: linear-gradient(0deg, red, transparent);
}

.card-front .card-content {
    z-index: 1;
    color: white;
}

.card-front .card-content p {
    color: #ececec;
}

.card-back {
    transform: rotateY(180deg);
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(0deg, red, transparent);
}

.card-back .card-image {
    width: 16em;
    height: 11em;
    margin: 0 auto;
    border-radius: 1em;
    background-image: url('../image_du_site/chateau.jpg');
    background-size: cover;
    background-position: center center;
}

.card-back p {
    margin-top: 0em;
}

.card-back .card-icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-back .card-icons a {
    font-size: 1.5em;
    color: white;
    background: red;
    width: 2em;
    height: 2em;
    border-radius: 100%;
    margin-bottom: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity .10s;
}

.card-back .card-icons a:hover {
    cursor: pointer;
    opacity: 0.7;
}

.card-front {
    transition: opacity .6s;
}

.card:hover .card-front {
    opacity: 0;
}

.liendiscord {
    color: silver;
    text-align: center;
}

.a {
    font-size: 1em;
    border-radius: 30%;
}