@font-face {
    font-family: 'press_start_2pregular';
    src: url('https://cwilliamson29.github.io/Calculator/css/pressstart2p-regular-webfont.woff2') format('woff2'),
         url('https://cwilliamson29.github.io/Calculator/css/pressstart2p-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html, body {
    height: 100%;
  }
  body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #container{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.CENTERED{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.calcOptions{
    background-color: rgb(148, 148, 148);
    border: 2px solid black;
    border-radius: 15px;
}
#calc-outside1{
    width: 362px;
    min-height: 512px;
}
#calc-outside2{
    width:356px;
    min-height: 506px;
    border: 2px dotted black;
    background-color: rgb(78, 78, 78);
}
#calc-outside3{
    width:350px;
    min-height: 500px;
    align-items: none;
}
#calcHeader{
    width: 100%;
    height: 25px;
    margin: auto;
    margin-top: 5px;
    font-family: 'press_start_2pregular';
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    /*background-color: purple;*/
}
#p1{
    margin: 0;
    height: inherit;
    margin-left: 5px;
    font-size: 18px;
    font-weight: bolder;
    font-family: 'Times New Roman', Times, serif;
}
#p2{
    margin: 0;
    margin-top: 4px;
    height: inherit;
    margin-right: 5px;
    font-size: 13px;;
}
#displayScreen{
    overflow:hidden;
    border: 2px solid rgb(54, 54, 54);
    border-radius: 7px;
    margin: auto;
    margin-top: 5px;;
    padding-right: 5px;
    width: 95%;
    min-height: 60px;
    background-color: black;
    color: lawngreen;
    font-family: 'press_start_2pregular';
    font-size: 30px;
    align-items: flex-end;
}
#screenFooter{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: auto;
    margin-top: 5px;
    width: 95%;
    height: 42px;
}
#clearWrap{
    width: 100px;
    height: 42px;
}
#clrBtn{
    width: 75px;
    height: 30px;
    background-color: rgb(85, 85, 85);
    border: 2px solid black;
    border-radius: 8px;
    font-family: 'press_start_2pregular';
}
#clrBtn:hover{
    color: white;
    background-color: rgb(66, 66, 66);
}
#solarWrap{
    width: 100px;
    height: 42px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    background: rgb(58, 34, 34);
}
.solar{
    height:40px;
    width: 23px;
    background-color: rgb(36, 36, 36);
    border: 1px solid black;
}
#btnContainer{
    margin: auto;
    margin-top: 5px;
    width: 97%;
    height: 345px;
    background-color: rgb(34, 34, 34);
    border-radius: 15px;
}
#btnContainer2{
    margin: auto;
    width: 96%;
    height: 96%;
    background-color: rgb(148, 148, 148);
    border-radius: 15px;
    border: 4px solid rgb(68, 68, 68);
    display:flex;
    flex-wrap: wrap;
}
.numBtn{
    width: 54px;
    height: 67px;
    background-color: rgb(84, 85, 121);
    border-radius: 15px;
    border: 4px solid rgb(68, 68, 68);
    margin: 2px;
    font-family: 'press_start_2pregular';
}
.numBtn:hover{
    color:white;
    background-color: rgb(55, 56, 80);
}
.opBtn{
    width: 50px;
    height: 67px;
    background-color: rgb(85, 85, 85);
    border-radius: 15px;
    border: 4px solid rgb(68, 68, 68);
    margin: 2px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: 'press_start_2pregular';
}
.opBtn:hover{
    color:white;
    background-color: rgb(59, 59, 59);
}
.op2Btn{
    width: 50px;
    height: 67px;
    background-color: rgb(85, 85, 85);
    border-radius: 15px;
    border: 4px solid rgb(68, 68, 68);
    margin: 2px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: 'press_start_2pregular';
}
.op2Btn:hover{
    color:white;
    background-color: rgb(59, 59, 59);
}
.opLarge{
    height: 147px;
    margin-bottom: 7px;
}
#num0{
    width:120px;
}
#btn1-9{
    width: 200px;
    height:245px;
    /*background: darkmagenta;*/
    display:flex;
    flex-wrap: wrap;
    padding-top: 6px;
}
#operators{
    padding-top: 10px;
    width: 125px;
    height:330px;
    /*background: rgb(49, 0, 228);*/
    display:flex;
    flex-wrap: wrap;
}
#btn0Holder{
    width: 200px;
    height: 78px;
    margin-top: -89px;
    /*background: rgb(0, 228, 0);*/
    display:flex;
    flex-wrap: wrap;
}