@charset "UTF-8";
/* Фоновый градиент для всего тела страницы */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(180deg, #111111 0%, #804080 100%);
  color: #FFFFFF;
  /*overflow: hidden; /* Чтобы скрыть возможные скроллы из-за анимации */
}

/* Анимация звездного неба */
body::before {
  content: "";
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: transparent url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><circle cx="5" cy="5" r="5" fill="white"/></svg>') repeat;
  background-size: 100px 100px; /* Размер звезд */
  animation: star-animation 50s linear infinite;
  z-index: -1;
  opacity: 0.5;
}

/* Анимация мерцания */
@keyframes star-animation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
body::after {
  content: "";
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: transparent url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><circle cx="5" cy="5" r="5" fill="black"/></svg>') repeat;
  background-size: 100px 100px; /* Размер звезд */
  animation: star-animation 59s linear infinite;
  z-index: -1;
  opacity: 0.5;
}

/* Анимация мерцания */
@keyframes star-animation-reverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
/* Центрирование контента и отступы */
header, main, footer {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  position: relative; /* Чтобы контент был над фоном */
  z-index: 1;
}

/* Стили для шапки */
header {
  text-align: center;
  padding: 60px 20px;
}

.btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

/* Кнопка призыва к действию */
.cta-button {
  display: inline-block;
  /* background-color: #FFD700; */
  background: linear-gradient(to left, #FFD700, #FFC000);
  color: #000000;
  padding: 15px 30px;
  margin-top: 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: all 0.3s;
  border: 2px solid #000000;
}

.cta-button:hover {
  /* background-color: #FFC000; */
  background: linear-gradient(to right, #FFD700, #FFC000);
  transform: scale(1.07);
}

.cta-button-donate {
  display: inline-block;
  /* background-color: #fb00ff; */
  background: linear-gradient(to right, #fb00ff, rgb(244, 163, 225));
  color: #ffffff;
  padding: 15px 30px;
  margin-top: 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: all 0.3s;
  border: 2px solid #FFFFFF;
}

.cta-button-donate:hover {
  background: linear-gradient(to left, #fb00ff, rgb(244, 163, 225));
  transform: scale(1.07);
}

/* Секции основной части */
main section {
  margin: 40px 0;
}

/* Заголовки секций */
main h2 {
  color: #FFD700;
  margin-bottom: 20px;
}

/* Список преимуществ */
.features ul {
  list-style: none;
  padding: 0;
}

.features li {
  margin: 10px 0;
  font-size: 18px;
}

/* Отзывы */
.testimonials blockquote {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-left: 5px solid #FFD700;
  font-style: italic;
}

/* Подвал */
footer {
  text-align: center;
  font-size: 14px;
  border-top: 1px solid #FFFFFF;
  padding-top: 20px;
  margin-top: 40px;
}

.userLink {
  text-decoration: underline;
  background: linear-gradient(90deg, #fb00ff, white); /* ваш градиент */
  -webkit-background-clip: text; /* для Chrome, Safari, Edge */
  background-clip: text; /* стандарт */
  color: transparent; /* делаем текст прозрачным, чтобы показывался градиент */
  -webkit-text-fill-color: transparent; /* для Chrome, Safari, Edge */
  /* Можно добавить эффект тени или другие стили по желанию */
}

/* Стили для логотипа */
.logo-container {
  text-align: center;
  margin-bottom: 20px;
}

.logo {
  width: 50%; /* Устанавливаем фиксированную ширину */
  height: 50%; /* Устанавливаем фиксированную высоту */
  border-radius: 50%; /* Делает изображение круглым */
  -o-object-fit: cover;
     object-fit: cover; /* Обрезает изображение, чтобы заполнить контейнер без искажений */
  border: 2px solid #FFFFFF; /* Белая рамка вокруг логотипа */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Тень вокруг логотипа */
}

/* @media (max-width: 425px) {
  .btn-container {
    background-color: yellow;
    flex-direction: column;
    align-items: stretch;
  }
  .cta-button, .cta-button-donate {
    display: contents;
    width: 100%;
  }
}# sourceMappingURL=styles.css.map */