@charset "UTF-8";

:root {
  --bg-text-color: #fff;
  --bg-color: #000;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  color: var(--bg-text-color);
  line-height: 1.5;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-primary);
  background: var(--bg-color);
  min-height: 100vh;
  margin: 0;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

@media screen and (min-width: 1350px) {
  .wrapper img {
    max-width: 1200px;
  }
}
