body {
  background-image: linear-gradient(to right, #b48237, #bb8f56);
  font-family: "Noto Kufi Arabic", sans-serif;
}
.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.table {
  width: 60%;
  margin-top: 70px;
  background-color: rgb(239, 239, 239);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 5px 20px rgba(40, 40, 40, 0.2);
}
.head {
  width: 100%;
  text-align: center;
  background-color: rgb(207, 165, 110);
  color: white;
  padding: 8px 0;
}
button {
  border: none;
  font-size: 20px;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.4);
}
button.circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 0;
}
.task {
  display: flex;
  background: white;
  padding: 5px 10px;
  border-bottom: solid black 1px;
  transition: 0.2s;
}
.task:hover {
  box-shadow: 0px 3px 15px rgba(150, 150, 150, 0.7);
}
.task-info {
  width: 60%;
}
.task-btns {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 10px;
  width: 30%;
}
.done{
    background-color: rgb(138, 252, 129);
}
table, th, tr, td{
    border: solid white 1px;
    text-align: center;
}
.task {
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 650px) {
  .task-btns {
    display: block;
}
}   
@media (max-width: 590px) {
  .task-btns button {
    display: block;
   margin-top: 10px;
}
}   