*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 16px;
}
body{
    background-color: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5vh;
}
.container{
/* border: 1px solid red; */
width: 400px;
display: flex;
justify-content: center;
flex-direction: column;
}
.inputBox{
    /* border: 1px solid blue; */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    margin-top: 5px;
    padding: 5px;
}
.inputBox input{
height: 25px;
border: none;
}
.inputBox button{
    height: 30px;
    width: 30px;
    border-radius: 50%;
    margin: 0 0 0 5px;
    text-align: center;
    font-size: 1em;
    background-color: cornflowerblue;
    color: white;
    border: none;
}
.afficher{
    /* border: 1px solid black; */
    height: 400px;
    overflow-y: auto;
   
}
.afficher::-webkit-scrollbar{
    display: none;
}
.resulte{
    display: flex;
    justify-content: space-around;
    align-items: center;
    border: 1px solid green;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 10px;
}

input[type='checkbox']{
     /* border: 1px solid purple; */
    background-color: blueviolet;
    display: flex;
    padding: 10px;
}
.checkboxInput input[type='checkbox']:checked{
background-color: red;
}

 p{
    background-color: pink;
    padding: 2px 10px;
    width: 80%;
}

 button{
padding: 2px 10px;
font-size: 1em;
}