.vanilapage {
  height: 80vh;
  flex-direction: column;
}

.title {
  font-size: 3rem; /* Было 2.2rem */
  font-weight: bold;
  letter-spacing: 1px;
}

.subtitle {
  font-size: 1.5rem; /* Было 1.2rem */
  color: #787878;
  margin-top: 0.5rem;
}

.ip-box {
  border: 1px solid #333;
  padding: 12px 24px;
  display: inline-block;
  font-size: 1.5rem;
  color: #fff;
  background-color: transparent;
  border-radius: 4px;
}


/* Сама кнопка */
#copyIpBtn {
  border: none;
  background: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
}

#copyIpBtn:focus {
  outline: none;
  box-shadow: none;
}

/* Анимация смены состояния */
#copyIpBtn.copied {
  background-color: #28a745;
  color: #fff;
  transition: all 0.5s ease-in-out;
}

/* Устанавливаем высоту секций на 100vh */
        .section {
            height: 100vh; /* Каждая секция будет занимать весь экран */
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px 20px;
            text-align: center;
        }

        /* Прокрутка в одну секцию */
        html, body {
            font-family: 'JetBrains Mono', monospace;
            margin: 0;
            padding: 0;
            overflow: hidden;
            height: 100%;
            color: #fff;
        }

        #fullpage {
            display: flex;
            flex-direction: column;
            transition: transform 0.8s ease-in-out; /* Плавный переход для всего контейнера */
        }


        .title, .subtitle {
            color: #fff;
            font-family: 'JetBrains Mono', monospace;
        }

        .btn-outline-light {
            border-color: #007bff;
            color: #007bff;
        }

        .btn-outline-light:hover {
            background-color: #007bff;
            color: #fff;
        }

        .section-title {
            color: #fff;
            font-size: 2rem;
            font-weight: bold;
        }

        .section-title2 {
            color: #fff;
            font-size: 1rem;
        }
        
        /* Стиль для заголовков */
        h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        p {
            font-size: 1.1rem;
            line-height: 1.5;
        }



    @media (max-width: 1200px) {
        .ip-box {
            flex-direction: column; /* Переключаем на вертикальное расположение элементов */
            align-items: center; /* Центрируем содержимое по оси Y */
        }

        .canvas-container, .text-container {
            width: 100%; /* Устанавли ваем ширину 100% для элементов */
            padding-right: 0;
            padding-left: 0;
        }

        .canvas-container {
            order: 1; /* Канвас идет после текста на мобильных устройствах */
            margin-top: 20px; /* Небольшой отступ сверху */
        }

        .text-container {
            order: 0; /* Текст остается сверху */
        }
    }