body {
  font-size: 16px;
  padding: 50px;
}
.row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 24px;
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

body {
  background-color: #ffffff;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #000000;
  }
}
