.panel{
    display: grid;
    grid-template-columns: repeat(3,auto);
    grid-template-rows: repeat(5,auto);
    max-width: 600px;
    max-height: 700px;
    /*min-width: 327px;*/
    min-height: 380px;
    gap: 2%;
}
.buttonContainer{
    display: grid;
    grid-template-columns: repeat(2,auto);
    max-width: 650px;
    max-height: 700px;
    /*min-width: 327px;*/
    min-height: 380px;
    gap: 8%;
    margin: 5%;
}
.nonNumeric{
    background: linear-gradient(40deg, #919ca6, #d3dee8);
    background-size: 100% 100%;
    color: #6e7780;
    border-color: #d3dee8;
    border-radius: 10pt;
    border-bottom: 0;
    border-right: 0;
    border-left: solid 5px;
}
.screen{
    background: linear-gradient(300deg, #427a2a, #6ab04c);
    background-size: 100% 100%;
    border: #427a2a solid 5px;
    border-radius: 10px;
    border-bottom: 0;
    border-left: 0;
    overflow: hidden;
    width: auto;
    height: auto;
    margin: 7%;
}
p{
    font-size: 2em;
    color: #126006;
    padding-left: 10px;
}
button{
    background: linear-gradient(40deg, #9a7d02, #ffcf00);
    background-size: 100% 100%;
    color: #685504;
    border-color: #9a7d02;
    border-radius: 10pt;
    border-bottom: 0;
    border-right: 0;
    border-left: solid 5px;
    min-height: 10px;
    min-width: 10px;
    max-height: 100%;
    max-width: 100%;
    font-size: 1em;
}
.center{
    display: flex;
    justify-content: center;
    align-items: center;
}

.clear{
    background: linear-gradient(40deg, #af1224, #e42339);
    background-size: 100% 100%;
    border-color: #af1224;
    color: #880f1d;
    border-bottom: 0;
    border-right: 0;
}
.equals{
    background: linear-gradient(40deg, #048abd, #00B9FF);
    background-size: 100% 100%;
    border-color: #048abd;
    color: #034761;
    border-bottom: 0;
    border-right: 0;
}

.pressed {
    box-shadow: 0 1px 1px 0 #000000;
    opacity: 0.5;
}
.main{
    display: flex;
    flex-direction: column;
    /*flex-wrap: wrap;*/
    padding-top: 20px;
    background: linear-gradient(40deg, #464a4c, #b3adae);
    border-left: #464a4c solid 15px;
    border-bottom: #464a4c solid 15px;
    background-size: 100% 100%;
    border-radius: 40px;
    max-width: 650px;
    max-height: 700px;
    min-width: 327px;
    min-height: 380px;
}
