@charset "utf-8";
/* CSS Document */

.button {
  display: inline-block;
  width: 100%;;
  height: 40px;
  text-align: center;
  text-decoration: none;
  line-height: 40px;
  outline: none;
}
.button::before,
.button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.button,
.button::before,
.button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#blog .button {
  background-color: #c10128;
  color: #fff;
}
.button:hover {
  background-color: #db2147;
}