@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  box-sizing: border-box;
}

body{
  background-color: rgb(161,100,223);
  font-family: 'Roboto', sans-serif;
  margin:0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100vh;
  overflow: hidden;
}

button {
  background-color: rebeccapurple;
  border-radius: 5px;
  border:none;
  color: #fff;
  margin: 1rem;
  padding: 1.5rem 3rem;
  font-sise: 1.2rem;
}

button:hover {
  opacity:0.9;
}

button:focus {
  outline:none;
}