.btns {
    width: 65px;
    height: 65px;
}

@font-face {
    font-family: 'Futuristic'; 
    src: url(../calculator/fonts/Tektur-VariableFont_wdth\,wght.ttf); 
  }


.display {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    background-color: #4D4D4D;
    border-radius: 8px;
    grid-row: 1 / 1;
    grid-column: 1 / 5;
    margin: 5px;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 28px;
    color: white;
}

a,
a:visited {
  text-decoration: none;
  color: #B46060;
  transition: 1s;
}

a:hover {
  color: #cf733e;
}

html, body {
    
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

.layer {
    background-color: rgba(0, 0, 0, 0.74);
    display: flex;
    margin: auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 25px;
    height: 100%;
}

.description {
    color: black;
    background-color: rgba(255, 255, 255, 0.747);
    text-align: center;
    font-weight: 500;
    padding: 15px;
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}

.display {
    white-space: nowrap;
    overflow: hidden;
    text-overflow:ellipsis;
}

p {
    font-family: 'Futuristic';
}

button {
    background-color: #FFF4E0;
    border: none;
    border-radius: 5px;
    font-family: 'Futuristic';
    font-weight: 500;
    cursor: pointer;
}

.container {
    height: 100%;
    background: url(pic/bg.jpg);
}

input {
    width: 50px;
}

#calculatorBox {
    background-color: #B46060;
    border-radius: 16px;
    display: grid;
    grid-template-rows: 90px repeat(4, 65px);
    grid-template-columns: repeat(4, 65px);
    padding: 15px;
    gap: 3px;
}

.btn1 {
    grid-row: 2 / 2;
    grid-column: 1 / 1;
}
.btn2 {
    grid-row: 2 / 2;
    grid-column: 2 / 2;
}
.btn3 {
    grid-row: 2 / 2;
    grid-column: 3 / 3;
}
.btnAdd {
    grid-row: 2 / 2;
    grid-column: 4 / 4;
    background-color: #FFBF9B;
}
.btn4 {
    grid-row: 3 / 3;
    grid-column: 1 / 1;
}
.btn5 {
    grid-row: 3 / 3;
    grid-column: 2 / 2;
}
.btn6 {
    grid-row: 3 / 3;
    grid-column: 3 / 3;
}
.btn- {
    grid-row: 3 / 3;
    grid-column: 4 / 4;
    background-color: #FFBF9B;
}
.btn7 {
    grid-row: 4 / 4;
    grid-column: 1 / 1;
}
.btn8 {
    grid-row: 4 / 4;
    grid-column: 2 / 2;
}
.btn9 {
    grid-row: 4 / 4;
    grid-column: 3 / 3;
}
.btnx {
    grid-row: 4 / 4;
    grid-column: 4 / 4;
    background-color: #FFBF9B;
}
.btnAC {
    background-color: #FFBF9B;
    grid-row: 5 / 5;
    grid-column: 2 / 2;
}
.btn0 {
    grid-row: 5 / 5;
    grid-column: 1 / 1;
}
.btnEQ {
    grid-row: 5 / 5;
    grid-column: 3 / 3;
    background-color: #FFBF9B;
}
.btnDIVIDE {
    grid-row: 5 / 5;
    grid-column: 4 / 4;
    background-color: #FFBF9B;
}


