body{
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

button{
  padding: 14px 20px;
  margin: 8px 0;
  cursor: pointer;
  border: 0px solid #000;
  border-radius: 20px;
  background-image: linear-gradient(to bottom, #f1f1f1, #f9f9f9, #f9f9f9, #f9f9f9, #f1f1f1);
  box-shadow: 0px 3px 2px -1px #dbdbdb;
}

button:active{
  background-image: linear-gradient(to bottom, #f9f9f9, #f1f1f1, #f1f1f1, #f1f1f1, #f9f9f9);
  box-shadow: inset 0px 3px 10px -3px #c5c5c5;
}

img{
  height: 3rem;
  margin-right: 5px;
}
p{
  margin: 0;
  font-size: 2rem;
}

.buttonContent{
  display: flex;
  align-items: end;
}