#button_div {
  width: 100%;
  height: 300px;
  display: block;
  margin: 10px; }

button {
  background: #ffcc33;
  width: 12em;
  height: 3em;
  margin: auto; }

.btn {
  border-radius: 10px;
  border: 10px;
  font-size: 25px;
  position: absolute;
  display: inline-block;
  margin: 0 auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 0); }

.btn:link,
.btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 100px;
  transition: all .2s;
  position: absolute;
  display: inline-block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 0); }

.btn:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  left: 50%;
  top: 50%; }

.btn:active {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }

.btn-white {
  background-color: #fc3;
  color: black;
  border-radius: 30px;
  font-weight: bold;
  font-family: 'Comic Sans MS', monospace; }

.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all .4s; }

.btn-white::after {
  background-color: #fc3; }

.btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0; }

.btn-animated {
  animation: moveInBottom 5s ease-out;
  animation-fill-mode: backwards; }

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(30px); }
  100% {
    opacity: 1;
    transform: translateY(0px); } }

/*# sourceMappingURL=button.css.map */
