html {min-height: 100%;}
body {
    font-family: Tahoma,sans-serif;
    margin: 0;
    padding: 0;
	height: 100%;
    
    color: #fff;
	
  background:
    radial-gradient(circle at top center, rgba(255,255,255,.08) 0%, transparent 30%),
    linear-gradient(180deg,#3a3a3a 0%, #1f1f1f 35%, #111111 100%);	
	
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size:42px 42px;
  opacity:.15;
}

body::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:radial-gradient(circle at center, transparent 45%, rgba(0,0,0,.25) 100%);
}

/* Контейнер */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Заголовки */
h1, h2 {
    text-align: center;
	color: #fff;
	margin: 0 0 17px 0;
}

.anons {
    max-width: 400px;
    margin: 0 auto;
	color: #fff;
	
}


/* Форма */
form {
    display: flex;
    gap: 10px;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
}

input[type="email"] {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

button {
    padding: 12px;
    font-size: 16px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

button:hover {
    background: #1d4ed8;
}

/* Пара изображений */
.pair {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.pair img {
    width: 100%;
    max-width: 350px;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.pair img:hover {
    transform: scale(1.03);
}

/* Progress bar */
.progress {
    width: 100%;
    background: #ddd;
    border-radius: 20px;
    overflow: hidden;
    margin: 20px 0;
    height: 18px;
}

.progress-bar {
    height: 100%;
    background: #22c55e;
    width: 0%;
    transition: width 0.3s ease;
}

/* Результаты */
.result-item {
	color: #000;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: white;
    margin-bottom: 8px;
    border-radius: 8px;
}

.logo {text-align: center; padding: 21px 0 0 0;}
.logo img {max-width: 400px;}

/* Мобильная адаптация */
@media (max-width: 600px) {
    .pair {
        flex-direction: column;
        align-items: center;
    }

    .pair img {
        max-width: 100%;
    }
}


@media (max-width: 768px) {

  html {
    font-size: 18px; /* увеличивает весь рем-масштаб */
  }

  body {
    font-size: 1rem;
    line-height: 1.5;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.3rem; }

  p, li {
    font-size: 1rem;
  }

  .container {
    padding: 12px;
  }
}

