html, body {
  font-family: 'Montserrat', sans-serif;
  height: 100%;
  margin: 0;
}

body {
    background: linear-gradient(to right, #ff9a16 20%, #ffda95 80%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.calculator {
    box-shadow: 0px 15px 0px 0px #505358;
    display: grid;
    grid-template-rows: auto 5fr;
    background-color: #616268;
    border-radius: 15px;
    padding: 15px;
    width: 90%;
    height: 90%;
}

@media (min-width: 1000px) {
  .calculator {
    width: 50%;
  }
}

.display-div {
    font-size: min(6vw, 6vh);
    background-color: #25344b;
    border-radius: 10px;
    text-align: right;
    padding: 0px 15px;
}

.display-disabled {
    color: #112037;
    margin: 0;
}

.display-enabled {
    color: #b2b9be;
    margin: 0;
}

.keyboard {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    gap: 5px;
    justify-content: center;
    margin: 10px auto;
    flex: 1;
}

.calculator-button {
    box-shadow: inset -0.20em -0.3em 0px -0.1em #e3e4e5;
    font-weight: 700;
    padding: 15px;
    font-size: min(6vw, 6vh);
    border: none;
    display: inline-block;
    background-color: white;
    color: #373535;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.calculator-button:hover {
    background-color: #e4e4e5;
    position:relative;
	top: 2px;
}
