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

html {
  display: flex;
  justify-content: center;
  width: 100%;
}

body {
  padding: 1rem;
  flex-basis: 360px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  display: flex;
  flex-direction: column;
}

h1 {
  text-align: center;
}

section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

article {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}