body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #4c6852;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
h2 {
  color: white;
  font-weight: 300;
}
/*button {
  padding: 10px 50px;
  border-radius: 30px;
  border: none;
  text-align: center;
  justify-content: center;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 300;
  background-color: black;
  transition: 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
button:hover {
  cursor: pointer;
}
button:active {
  background-color: rgb(94, 94, 94);
}*/
button {
  background: linear-gradient(to bottom, #f9f9f9, #dcdcdc);
  border: 1px solid #aaa;
  border-radius: 8px;
  padding: 15px 30px;
  font-size: 18px;
  color: #333;
  font-weight: 700;
  cursor: pointer;
  box-shadow: inset 0 1px 0 #fff, 0 4px #aaa, 0 7px #666;
  transition: all 0.2s ease;
  position: relative;
}
button:active {
  top: 3px;
  box-shadow: inset 0 1px 0 #fff, 0 2px #666, 0 3px #444;
}
#heading {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(2px);
  width: 200px;
  height: 12px;
  padding: 20px 5px;
  margin-bottom: 100px;
  text-align: center;
  justify-content: center;
  border-radius: 25px;
  font-weight: 600;
}
