body{
    margin: 0;
    background-color: black;
}

.left_section{
    background-color: #F7AA1D;
    background-image: url('visuel_futurthon.png'); /* Chemin vers l'image de fond de la moitié gauche */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%); /* Image en noir et blanc par défaut */
}

.right_section{
    background-color: #06D234;
    background-image: url('visuel_sabotage.png'); /* Chemin vers l'image de fond de la moitié gauche */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%); /* Image en noir et blanc par défaut */
}
.left_section, .right_section{
    flex: 1; /* Chaque élément prend 50% de l'espace disponible */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: 0.3s ease-in-out;
}

.left_section h1 {
    filter: grayscale(0%) !important; /* Image en noir et blanc par défaut */
}

h1{
    margin: 0;
    font-size: 80pt;
    background-color: #1B1B1C;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    padding: 16px;
    color: #F2F2F2;
}

.main_container{
    display: flex;
    height: 100vh; /* Hauteur totale de la vue */
    cursor: pointer;
}

.right_section:hover, .left_section:hover{
    margin: 20px;
    border-radius: 16px;
    filter: grayscale(0%); /* Image en noir et blanc par défaut */
}

img{
    width: 100%;
}
a{
    text-decoration: none;
}

@media (max-width: 650px) {
    .main_container{
        flex-direction: column;
    }
    h1 {
        margin: 0;
        font-size: 40pt;
        background-color: #1B1B1C;
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        padding: 16px;
        color: #F2F2F2;
      }
}