.theme_dark .decorated-zone__rec {
  display: flex;
}

.page.theme_dark {
  --b-g: url(../images/cover-image-dark.png);
  --background-accent-color: #ff0070;
  
  --title-color: #db00ff;
  --main-text-color: #f1b2ce;
  --text-color: #000028;
  --accent-color: #ff0070;
  --accent-color-text: #ff0070;

  --shadow: #ff0070;
  --button-color: #ff0070;
  --hover: #ff007066;

}

@media (prefers-color-scheme: dark) {
  :root {
    --b-g: url(../images/cover-image-dark.png);
    --background-accent-color: #ff0070;
    --title-color: #db00ff;
    --main-text-color: #f1b2ce;
    --shadow: #ff0070;
    --text-color: #000028;
    --accent-color: #ff0070;
    --accent-color-text: #ff0070;
    --button-color: #ff0070;
    --hover: #ff007066;
  }

  .decorated-zone__rec {
    display: flex;
  }
}
