button {
  border: 0;
  padding: 0;
  color: #000;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: transparent;
  box-shadow: 10px 10px rgba(0, 0, 0, 0.1);
  transition: 0.1s box-shadow ease-in;
}

button svg {
  background: #3f3e3c;
  width: 50px;
  height: 40px;
  padding: 10px;
  transition: 0.4s;
}
button div.wrapper {
  padding: 0 25px 0 10px;
  height: 60px;
  overflow: hidden;
  background: #f5f5f5;
}
button div.wrapper .slider {
  transform: translate3d(0, 0, 0);
}
button div.wrapper .slider span {
  color: #010101;
  display: block;
  line-height: 60px;
}
.dropped {
  box-shadow: 6px 6px rgba(0, 0, 0, 0.1);
}
a {
  border: 0;
    padding: 0;
    color: #000;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: transparent;
    box-shadow: 10px 10px rgba(0, 0, 0, 0.1);
    transition: 0.1s box-shadow ease-in;
}
html {
  width: 100%;
  height: 100%;
}
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: grid;
  place-items: center;
  background: #ffc5c4;
  overflow: hidden;
  font-family: sans-serif;
}