    :root {
    --background: rgb(255, 255, 255);
    --darkbackground: rgb(255, 255, 255);
    --foreground:rgb(235, 235, 235);
    --darkforeground: rgb(212, 212, 212);
    --black: rgb(0, 0, 0);
    }

    *{
        margin: 0;
        padding: 0;
        font-family: sans-serif;
        font-weight: bold;
        font-size: 50px;
    }

    p {
        text-align: center;
        margin-top: 15px;
    }
    
    body{
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 20px;
        background-color: var(--background);
    }

    input{
        width: 40px;
        height: 40px;
        margin: 10px 20px;
    }

    h1{
        text-align: center;
        margin-bottom: 20px;
        margin-top: 15px;
        color: var(--black);
        font-size: 32px;
    }

    .center{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        background-color: var(--foreground);
        padding-bottom: 50px;
    }

    #togglecontrols{
        padding: 15px;
        margin: 5px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        background-color: var(--foreground);
    }
    hr {
        border: 2px solid var(--darkforeground);
        width: 90%;
        margin: 15px 0;
    }

    #togglecontrols p{
        text-align: center;
        font-size: small;
        color: grey;
    }

    #signature{
        margin-top: 20px;
        font-size: 15px;
        text-align: left;
        color: rgba(128, 128, 128, 0.559);
    }

    #togglecontrols div{
        margin: 5px 25px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #togglecontrols div p {
        margin: 0;
    }
    button{
        border-radius: 25px;
        border-top: none;
        padding: 10px;
        margin: 5px;
        padding: 20px 0;
        background-color: var(--darkbackground);
        border-color: var(--black);
        cursor: pointer;
        color: var(--black);
    }
    button:active{
        border: solid;
        border-top: none;
        border-color: var(--darkforeground);
        background-color: var(--foreground);
    }

    #title{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    #semaineTogler{
        height: 80px;
        width: 75%;
        font-size: 70%;
        padding: 5px;
    }
    #refrechbut{
        width: 80px;
        height: 80px;
        padding: 10px 0 20px 0;
    }
    #refrechimg{
        width: 60px;
        height: 60px;
    }