.body {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1rem;
  padding: 0;
  margin: 0;
}

.app {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1rem;
}

.button {
  padding: 1rem;
  background-color: #6600ff;
  color: white;
  cursor: pointer;
  border-radius: 0.325rem;
  transition: all 0.3s ease-in-out;
}

.button:hover {
  background-color: #f33;
}