body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #e2e5e9;
  display: flex;
  justify-content: center;
  min-height: 100vh;
      flex-direction: column;
    align-items: center;
}

img {
  display: block;
  max-width: 100%;
}

button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 500px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Utility for flex gaps since some older browsers might struggle, though modern is fine */
.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.flex-col {
  display: flex;
  flex-direction: column;
}