body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  margin: 0%;
  border-color: rgb (25, 25, 25);
}
table {
  width: 100%;
  height: 70vh;
  background-color: rgb(25, 25, 25);
  color: white;
}

td {
  width: 25%;
  text-align: center;
  font-size: 24px;
  background-color: rgb(30, 30, 30);
  border-radius: 15px;
  box-shadow: 0 1px 1px 2px rgba(232, 233, 229, 0.25);
}
td:hover {
  background-color: #141414;
  cursor: pointer;
}
#resultArea {
  height: 30vh;
  background-color: rgb(40, 40, 40);
  font-size: 64px;
  color: white;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 24px;
  box-sizing: border-box;
  border: 1px solid rgba(192, 189, 189, 0.5);
  
  
}
#result {
  background-color: rgb(67, 55, 236);
}
#result:hover {
  background-color: rgb(110, 101, 235);
}
.highlight {
  background-color: rgba(25, 25, 25);
}
#del {
  background-color: rgb(230, 136, 13);
}
#del:hover {
  background-color: rgb(250, 179, 86);
}
#back {
  background-color: rgb(230, 136, 13);
}
#back:hover {
  background-color: rgb(250, 179, 86);
}
.buttons {
  
   width: 100%; 
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-gap:5px;
  background-color: rgb(25, 25, 25);

  
}
button {
  width: 200px;
  height: 10vh;
  margin: 0 auto;
  padding: 10px;
  font-size: 24px;
  background-color: rgb(230, 136, 13);
  border-radius: 15px;
  

}
button:hover {
  background-color: rgb(250, 179, 86);
  cursor: pointer;
}