@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
body{
background-color: #121212; /* Fond noir en mode sombre */
   display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    transition: 0.5s background ease;

}
.section{
    color: white;
    transition: .5s;
    width: 100%;
    height: 100%;
    background-color: #121212; /* Fond noir en mode sombre */
    padding: 100%;
    margin-top: 50%;

}
.section2{
    color: white;
    transition: .5s;
    width: 100%;
    height: 100%;
    background-color: #121212; /* Fond noir en mode sombre */


}
.section h1{
    text-transform: uppercase;
    margin: 0;
}
.section p{
    color: grey;
}
.light-color{
    background-color: #fff;
    color: #333;
}
.theme-switch{
    color: white;
    width: 70px;
    height: 30px;

    background-color: #BBBBBB;
    border-radius: 50px;
    position: absolute;
    top: 50px;
    right: 50px;
    margin-right: 0%;
    
}
.theme-switch .switch{
    background-color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 4px;
    transition: 0.5s all ease;
}
.theme-switch3{
    color: white;
    width: 70px;
    height: 30px;

    background-color: #BBBBBB;
    border-radius: 50px;
    position: absolute;
    top: 50px;
    right: 50px;

    
}
.theme-switch3 .switch3{
    background-color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 4px;
    transition: 0.5s all ease;
}
.light-theme3{
    background-color: #fff;
    color: #000;
}
.light-theme .theme-switch3{
    background-color: #121212; /* Fond noir en mode sombre */
    color: #fff;
}
.light-theme3 .theme-switch3 .switch3{
    transform: translateX(37px);
}

.light-theme{
    background-color: #fff;
    color: #000;
}
.light-theme .theme-switch{
    background-color: #121212; /* Fond noir en mode sombre */
    color: #fff;
}
.light-theme .theme-switch .switch{
    transform: translateX(37px);
}