*{
    margin: 0;
    padding: 0;
}
.calculatrice{
    display: flex;
    flex-direction: column;
    align-items: center;
}
h1{
    color: blue;
    text-align: center;
    padding-bottom: 30px;
    padding-top: 15px;
}
.elements{
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    width: 290px;
    background: hsl(0, 0%, 0%);
    padding-right: 6px;
    padding-top: 6px;
    padding-bottom: 6px;
}
.res{
    padding-right: 10px;
    overflow: hidden;
    font-size: 40px;
    margin-left: 6px;
    height: 50px;
    text-align: right;
    border-radius: 10px;
    border: 2px solid black;
    background-color: rgb(255, 255, 255);
    margin-bottom: 10px;
}
.numbers{
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    justify-content: space-evenly;
}
.numbers button{
    font-size: 15px;
    width: 30%;
    height: 50px;
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
    margin-bottom: 3px;
}
.numbers :nth-child(10){
    flex-grow: 0.81;
}
.numbers :last-child{
    font-size: 30px;
}
.characters{
    display: flex;
}
.Operations1 button{
    background-color: rgb(190, 190, 190);
    width: 100%;
    height: 50px;
    color: blue;
    font-size: 25px;
}
.Operations1{
    width: 20%;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.Operations1 :last-child{
    flex-grow: 0.95;
    color: white;
    background-color: rgb(0, 0, 255);
}
.Operations{
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
    margin-left: 6px;
}
.Operations button{
    width: 30%;
    height: 50px;
    color: blue;
    font-size: 20px;
    background-color: rgb(190, 190, 190);
}
.Operations :last-child{
    width: 25%;

}
.Operations :last-child img{
    width: 45%;

}