* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  background: rgb(192, 192, 192);
}

.slide-in {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #5BA2F5;
  transform: translateY(-100%);
  transition: transform .7s;
}
.slide-in.show {
  transform: translateY(0);
}


.controler {
  background: white;
  width: 300px;
  height: 300px;
  border: 1px solid gray;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.411);
}

a {
  width: 70%;
}

button {
  width: 100%;
}

.pushable {
  position: relative;
  background: transparent;
  padding: 0px;
  border: none;
  cursor: pointer;
  outline-offset: 4px;
  outline-color: deeppink;
  transition: filter 250ms;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.shadow {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: hsl(226, 25%, 69%);
  border-radius: 8px;
  filter: blur(2px);
  will-change: transform;
  transform: translateY(2px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.edge {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  background: #3266c5
}

.front {
  display: block;
  position: relative;
  border-radius: 8px;
  background: #6695ec;
  padding: 16px 32px;
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1rem;
  transform: translateY(-4px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.pushable:hover {
  filter: brightness(110%);
}

.pushable:hover .front {
  transform: translateY(-6px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.pushable:active .front {
  transform: translateY(-2px);
  transition: transform 34ms;
}

.pushable:hover .shadow {
  transform: translateY(4px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.pushable:active .shadow {
  transform: translateY(1px);
  transition: transform 34ms;
}

.pushable:focus:not(:focus-visible) {
  outline: none;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;

  position: absolute;
  bottom: 0;

  color: white;
  font-weight: 600;
}

footer a {
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all .7s;
}

footer a:hover {
  color: purple;
  text-decoration: underline;
}