/* Общий стиль для страницы */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #FFBB00, #FF6347);
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 2s ease-out;
}

/* Анимация появления */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Стиль для заголовка */
h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    animation: slideIn 1.5s ease-out;
}

/* Анимация для заголовка */
@keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Стиль для абзацев */
p {
    font-size: 1.5rem;
    max-width: 600px;
    margin: 10px auto;
    animation: fadeUp 2s ease-out;
}

/* Анимация для абзацев */
@keyframes fadeUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Стиль для кнопки */
.btn {
    margin-top: 30px;
    padding: 15px 30px;
    background-color: #FF6347;
    color: white;
    font-size: 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Эффект наведения на кнопку */
.btn:hover {
    background-color: #FFBB00;
}
