/* These are styles for demo page */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: sans-serif;
}

* {
  box-sizing: border-box;
}


.container {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.button {
  /* reset button styles */
  all: initial;

  margin: 0 auto;

  font-family: sans-serif;

  padding: 10px 26px;
  font-size: 18px;
  border-radius: 6px;
  
  color: #fff;
  background-color:#ff4cc7;
}

.button:hover {
  cursor: pointer;
  background-color: #ed38b4;
}

.button:active {
  background-color: #d21e99;
}
