/* Основные стили */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: #f0faff url('https://get.wallhere.com/photo/sunlight-space-sky-blue-horizon-circle-atmosphere-glare-light-background-star-line-screenshot-computer-wallpaper-atmosphere-of-earth-outer-space-astronomical-object-698646.jpg') no-repeat center center fixed; /* Добавляем фоновую картинку */
    background-size: cover; /* Масштабируем картинку на весь экран */
    color: #333;
    overflow: hidden; /* Убираем полосы прокрутки */
}

.page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
}

/* Фоновая анимация с цветами */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #003366, #0099ff); /* Синий-голубой градиент */
    background-size: 200% 200%;
    animation: backgroundMove 15s ease infinite;
    z-index: -2;
}

/* Фоновое изображение с цветами */
.background-flowers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/daisy.png'), url('images/flower.png');
    background-repeat: repeat;
    background-size: 150px 150px, 100px 100px; /* Размеры изображений */
    opacity: 0.2; /* Полупрозрачность для фона */
    z-index: -3;
}

/* Анимация фона */
@keyframes backgroundMove {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.header-section {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.header-section h1 {
    font-size: 4rem;
    margin: 0;
}

.header-section p {
    font-size: 1.5rem;
    margin: 20px 0;
}

.btn {
    display: inline-block;
    background-color: #007bff; /* Ярко-синяя кнопка */
    color: white;
    border: none;
    padding: 12px 24px;
    margin: 15px;
    border-radius: 25px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s, transform 0.3s;
}

.btn:hover {
    background-color: #0056b3; /* Темно-синяя кнопка при наведении */
    transform: scale(1.05);
}

/* Мобильные стили */
@media (max-width: 768px) {
    .header-section h1 {
        font-size: 2.5rem;
    }

    .header-section p {
        font-size: 1.2rem;
    }
}
