﻿@import url("9fa2c27557c94ca8b3f3791a78ff795c.css");
body {
  margin: 0;
  font-family: "Lato", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: #53d9d1;
}

.container {
  width: 400px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

button {
  outline: 0;
  border: 0;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 2px;
  cursor: pointer;
  position: relative;
}

.button {
  padding: 15px;
  color: white;
  font-size: 1em;
  border-radius: 10px;
  border: 1px solid #f27b9b;
  background: linear-gradient(to right, #f27b9b 70%, #eb7132);
  transition: transform 0.2s cubic-bezier(0, 0, 0.7, 1);
}
.button:before {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  width: 98%;
  height: 98%;
  position: absolute;
  background: white;
  transform: translate3d(0.5em, 0.5em, 1em);
  border-radius: 10px;
  border: 2px solid #f27b9b;
  box-shadow: 5px 5px 0 1px rgba(235, 113, 50, 0.8);
  transition: transform 0.2s cubic-bezier(0, 0, 0.7, 1);
}
.button:before:active {
  z-index: -1;
}
.button:hover {
  transition: all 0.1s cubic-bezier(0, 0, 0.7, 1);
  top: 4px;
  left: 3.5px;
}
.button:hover:before {
  box-shadow: 4px 4px 0 1px rgba(235, 113, 50, 0.4);
  top: -5.5px;
  left: -4.7px;
}
.button:active {
  box-shadow: 0px 0px 0px 0px;
  top: 5px;
  left: 5px;
  background: #f06489;
}
.button:active:before {
  transition: all 0.1s cubic-bezier(0, 0, 0.7, 1);
  box-shadow: 0px 0px 0px 0px;
  top: -5.5px;
  left: -4.7px;
  border: 1px solid #f06489;
}