* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

.btnDiv {
  padding: 40px;
  display: flex;
  gap: 20px;
}

a.btn {
  color: black;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  border: 1px solid;
  padding: 10px 20px;
  border-radius: 10px;
  transition: all 0.5s;
}

a.btn:hover {
  background-color: rgba(0, 0, 0, 0.281);
}

button {
  cursor: pointer;
}

/* button:focus {
    transform: scale(1.1);
    } */
a.btn:focus {
  transform: scale(1.04);
}
a.btn:active {
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 0);
}

/* MediaQuery
Grid */