.button {
  border: none;
  outline: none;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  font-size: 15px;
  font-family: var(--yc-text-body-font-family);
  padding: 12px 30px;
  border-radius: 10px;
  color: black;
  background-color: #ffdb4d;
  margin-top: 20px;
  margin-right: 20px;
    }
.button:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  background: #ffd633;
}
.button:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  background: #ffd633;
}
