@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;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  margin: 0;
}

#container {
  position: fixed;
  bottom: 10px;
  right: 10px;
}

button {
  background-color: rebeccapurple;
  color: #fff;
  padding: 1rem;
  border-radius: 5px;
  font-family: inherit;
  border: none;
}

.toast {
  background-color: rebeccapurple;
  color: #fff;
  border-radius: 5px;
  padding: 2rem;
  margin: 1rem;
}
