* {
  box-sizing: border-box;
}

html, body {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  height: 100dvh;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #F4F1E8;
  color: #0F0F10;
  overflow: hidden;
}

/* =========================
   LAYOUT
========================= */

#content {
  width: 100%;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =========================
   BUTTONS
========================= */

.button {
  width: 100%;
  height: 60px;

  background: #F4F1E8;
  border: 1px solid rgba(15, 15, 16, 0.10);
  border-radius: 10px;

  font-size: 18px;
  cursor: pointer;

  box-shadow: 0 2px 10px rgba(200, 169, 106, 0.2);

  display: block;
}

/* =========================
   WRAPPER (RATING LIST)
========================= */

.rating-wrapper {
  width: 100%;
  max-width: 420px;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* =========================
   FOOTER
========================= */

footer {
  position: fixed;
  left: 50%;
  bottom: 0;

  width: 100%;
  max-width: 420px;
  transform: translateX(-50%);

  display: flex;
  justify-content: center;
  gap: 16px;

  padding: 12px;
  font-size: 14px;

  opacity: 0.6;
  background: #F4F1E8;
}

footer a {
  color: #0F0F10;
  text-decoration: none;
}