@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
* {
  box-sizing: border-box;
}
body {
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  margin: 0;
}

button{
  background-color: rebeccapurple;
  color: #fff;
  padding: 1rem;
  font-family: inherit;
  border: none;
  font-size: 1.2rem;
  border-radius: 10px;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  transition: transform 0.1s linear;
}

button:active{
  box-shadow:0;
  transform: translate(2px,2px);
}

button:focus{
  outline: none;
}