:root {
  --pageBlack: #262626;
  --pageYellow: #ffd83e;
  --pagePurple: #552b55;
  --pageRed: #E1332d;
  --pageGreen: #2ce771;
  --pageGrey: #212121;

}
body {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #a0d4d9;
  box-sizing: border-box;
}
.material-icons {
  vertical-align: middle;
  height: 28px;
}
button {
  border: none;
  /* border-radius: 8px; */
  padding: 13px 40px 10px 40px;
  /* background-color: rgb(244, 247, 224); */
  color: rgb(80, 104, 130);
  vertical-align: middle;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 24px;
  /* line-height: 24px; */
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  border-radius:8px;
  background: #e0e0e0;
  box-shadow: inset -7px -7px 13px #bebebe,
            inset 7px 7px 13px #ffffff;
}



button:before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  top: -3px;
  left: -3px;
  border-top: 6px solid rgb(80, 104, 130);
  border-left: 6px solid rgb(80, 104, 130);
  border-top-left-radius: 8px;
  transition: all .4s;
}
button:hover:before {
  height: 115%;
  width: 105%;
}
button:after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  bottom: -3px;
  right: -3px;
  border-bottom: 6px solid  rgb(80, 104, 130);
  border-right: 6px solid rgb(80, 104, 130);
  border-bottom-right-radius: 8px;
  transition: all .4s;
}
button:hover:after {
  height: 115%;
  width: 105%;
}