
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body{
  display: flex;
  justify-content:left;
  align-items: left;
  background-color: #ebecf0;

}
.box{
  width: 110px;
  text-align: left;
  vertical-align: top;
  padding: 12px;
}
.box button{
  vertical-align: text-top;
  width: 100px;
  height: 30px;
  color: #61677c;
  box-shadow: -5px -5px 20px #ffffff,
              5px 5px 20px #babecc;
  border: none;
  outline: none;
  padding: 14px;
  background: #ebecf0;
  border-radius: 12px;
  cursor: pointer;
  margin: 8px;
  display: inline-flex;
  justify-content: center;
  align-items: center;    
  font-size: 16px;
  transition: all 0.1s ease-in-out;      
}
.box button:hover{
  box-shadow: -2px -2px 5px #fff,
              2px 2px 5px #babecc;
  color: lightgreen;
  background: #ebecf1;

}
.box button:active{
  box-shadow: inset -1px -1px 2px #babecc,
              inset -1px -1px 2px #fff;
  color: blue;
  background: #ebecf0;
}
.box button:disabled{
  box-shadow: inset -1px -1px 2px ,#cccccc;
              inset -1px -1px 2px #fff;
  pointer-events: none;
  color: darkgrey;
  background: #cccccc;
}
