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

* {
  box-sizing: border-box;
}

body {
  background-color: rgb(162, 89, 208);
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  margin: 0;
}

.btn {
  margin: 0 10px;
  padding: 20px 40px;
  border: 0;
  border-radius: 5px;
  background-color: rgb(112, 44, 179);
  color: white;
  cursor: pointer;
}
