@import url('https://fonts.googleapis.com/css?family=Poppins:wght@200;400&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Muli', sans-serif;
  background-color:rgb(161, 100, 223);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  height: 100vh;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin: 0;
}
.btn{
    background-color: rebeccapurple;
    border-radius: 5px;
    border: none;
    color: white;
    margin: 1rem;
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    cursor: pointer;
    font-family: inherit;
}
.btn:focus{
    outline: none;

}
.btn:hover{
    opacity: 0.9s;
}