@charset "utf-8";

body{
    margin: 0;
}

#fondo{
    width: 100%;
    height: 100vh;
    background-color: rgb(169, 86, 247);
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1{
    text-align: center;
    font-size: 3em;
}

#baseCalculadora{
    margin-top: 3em;
    width: 30%;
    height: 70vh;
    border-radius: 5%;
    background-color: rgb(67, 70, 70);
}
.vidrio{
    width: 90%;
    height: 20%;
    margin-top: 1em;
    margin-left: auto;
    margin-right: auto;
    border-radius: 3%;
    background-color: rgb(236, 238, 240);
    display: flex;
    flex-direction: column;
    align-items: end;
}

.num{
    width: 40%;
    height: 20%;
    margin-top: auto;
    border: none;
}

#resultado{
    width:  40%;
    height: 20%;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: 1em;
    background-color: white;
    border: 1px solid black;
    text-align: center;
}

#botones{
    width: 90%;
    height: 73%;
    margin-top: 1em;
    margin-left: auto;
    margin-right: auto;
    border-radius: 2%;
    background-color:rgb(236, 238, 240);
    display: flex;
    flex-direction: column;
    
}

.fila{
    width: 100%;
    height: 30%;
    display: flex;
    flex-direction: row;
    margin-top: auto;  
}

.bot{
    display: flex;
    width: 30%;
    height: 30%;
    border-radius: 10px;
    box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.411);
    justify-content: center;
    margin: auto;
    align-items: center;
    font-size: 30px;
    color: white;
    background-color: rgb(43, 42, 42);
}