* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: sans-serif;
  display: grid;
  place-content: center;
  width: 100vw;
  height: 100vh;
}

.root {
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

button {
  padding: 10px 20px;
  cursor: pointer;
}
