/* style.css
Calculatrice en js
Aleksa Mihajlovic
05-06-07.03.2025
V1  
Changelog : 05-06-07.03.2025 - Aleksa Mihajlovic - V1 : script css pour le style du site
*/

/*importer les polices d'écriture*/
.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.zalando-sans-expanded-titre {
  font-family: "Zalando Sans Expanded", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

h1{
    text-align: center;
}

/*importer les polices d'écriture*/
.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

/*mettre du style pour la div ou il y a tout le contenu*/
.calculatrice{
    width: 280px;
    background-color: #232522;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    border-radius: 10px;
    height: 450px;
}

/*mettre du style sur la zone d'affichage de la calculatrice*/
.calcule
{
    margin-top: 0;
    margin-bottom: 10px;
    background-color: #000000;
    border-radius: 10px;
    width: 280px;
    height: 150px;
    color: white;
    text-align: center;
    font-size: 50px;
    line-height: 150px;
}

/*mettre du style sur les boutons*/
.button{
    border-radius: 5px;
    width: 55px;
    height: 50px;
    font-size: 25px;
    margin: 2px;
}

/*mettre du style que sur les operateur*/
.operateur{
    background-color: #f5923e;
    color: white;
    align-items: center;
}

/*mettre du style que sur les chiffres*/
.chiffres{
    background-color: #e0e0e0;
    color: white;
}

/*mettre du style que sur le égal*/
.buttonEgal{
    background-color: #008001;
    color: white;
}

/*mettre du style que sur le supprimer*/
.buttonAC{
    background-color: #ff0000;
    color: white;
}

/*deplacer le bouton supprimer a gauche*/
.ligne-6{
    display: flex;
    align-self: self-start;
    margin-left: 17px;
}