body {
      font-family: Arial, sans-serif;
      background-color: #ffffff;
      text-align: center;
      margin: 0;
      padding: 0;
    }
    
    .container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100vh;
    }
    
    
    .options {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
    }
    
	.option {
  cursor: pointer;
  border: 2px solid #000000;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none; /* Убирает стандартное подчеркивание ссылок */
  outline: none; /* Убирает рамку вокруг кнопок при фокусе (например, при клике) */
  color: #000000; /* Задаем цвет текста кнопок */
	}

	.option:hover {
  background-color: #f0f0f0;
	}

.seo-text {
      text-align: center;
      margin: 20px;
      font-size: 16px;
      color: #333333;
    }