* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  display: grid;
  min-height: 100svh;
  place-items: center;
}
.container {
  display: flex;
  column-gap: 10px;
}

button {
  background-color: #377;
  border: none;
  border-radius: 1000px;
  color: white;
  font-weight: 700;
  padding: 0.5em 0.9em;
  cursor: pointer;
}
