@font-face {
    font-family: 'digital';
    src: url('./digital.ttf') format('truetype');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.calculadora {
    width: 300px;
    height: 400px;
    border: 2px solid #000;
    margin: 50px auto;
    border-radius: 10px;
    padding: 10px 0 5px 0;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.pantalla {
    width: 90%;
    height: 20%;
    border: 1px solid #000;
    border-radius: 5px;
    font-family: digital, monospace;
    font-size: 3rem;

    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px;

    overflow: hidden;     /* Oculta lo que sobresale */
    
}

.contenedorTeclado {
    width: 90%;
    height: 220px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.simbolos {
    border: 1px solid #000;
    border-radius: 5px;
    font-size: 1.2em;
    width: 75px;
    height: 220px;
    padding: 5px 0;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.simbolos p {
    width: 65px;
    height: 37px;
    border-radius: 5px;
    border: 1px solid #000;
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;
}
.contenedorIgual {
    width: 90%;
    height: 40px;
    font-size: 3rem;
    font-weight: bold;
    border-radius: 5px;
    border: 1px solid #000;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.numerico {
    border: 1px solid #000;
    border-radius: 5px;
    font-size: 1.2em;
    width: 180px;
    height: 220px;

    /* Grid */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 5px;
    padding: 5px;
}

.numerico .numero {
    border: 1px solid #000;
    border-radius: 5px;
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;
}   

#igual {
    cursor: pointer;
}
