*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body
{
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff6d7;
}

button
{
  color: #ffffff;
  background-color: #8ca4a6;
  border: none;
  border-radius: 6px;
  padding: 12px 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 22px;
  display: flex;
  align-items: center;
  
  box-shadow: 2px 7px 96px -2px rgba(238,209,191,1);
  -webkit-box-shadow: 2px 7px 96px -2px rgba(238,209,191,1);
  -moz-box-shadow: 2px 7px 96px -2px rgba(238,209,191,1);
}

button:hover
{
  box-shadow: none;
  cursor: pointer;
}

button i
{
  font-size: 30px;
  padding-right: 5px;
}