body {
  margin: 0;
  padding: 0;
  background: #000;
  height: 100vh;
  font-family: Arial, sans-serif;
}

.wrapper {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;     /* центрируем по горизонтали */
  justify-content: center; /* центрируем по вертикали */
  max-width: 400px;
  margin: auto;            /* центрирует блок и по вертикали, и по горизонтали */
  text-align: center;
}

h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #fff;
}

p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #aaa;
}

.btn {
  display: block;
  width: 100%;
  padding: 14px;
  margin: 10px 0;
  font-size: 1.1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary {
  background: #f56c6c;
  color: #fff;
}

.btn-primary:hover {
  background: #e05656;
}

.btn-secondary {
  background: #222;
  color: #fff;
  border: 1px solid #444;
}

.btn-secondary:hover {
  background: #333;
}

/* ПК версия: фон справа */
@media (min-width: 601px) {
  body {
    background: url("../static/img/pc_banner.jpg") no-repeat right top;
    background-size: auto 100%;
    background-color: #000;
  }
  .phone-banner {
    display: none;
  }
  .content {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 12px;
  }
}

/* Мобильная версия: картинка снизу */
@media (max-width: 600px) {
  .wrapper {
    display: flex;
    flex-direction: column;
  }
  .phone-banner {
    width: 100%;
    height: auto;
    display: block;
  }
  .content {
    background: transparent;
  }
}