:root {
  --page-background: #1e0028;
  --text-light: #ffffff;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--page-background);
  color: var(--text-light);
}

.page-wrapper {
  max-width: 393px;
  margin: 0 auto;
  background-color: var(--page-background);
  overflow: hidden;
  position: relative;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 18px;
  box-sizing: border-box;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.relative-container {
  position: relative;
  width: 100%;
}

.abs-img {
  position: absolute;
}