/* style.css */
/* === Общие стили === */
body {
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI',- , sans-serif;
    color: #fff;
    text-align: left;
    background: linear-gradient(90deg, #3f2875,#002bac,#1c4d5f);
    background-size: cover;
    box-sizing: border-box;
}

/* === Заголовок === */
h1 {
    font-size: 40px;
    color: #8a2be2;
    font-weight: 200;
    margin: 10px 10px 10px 10px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.2);
    text-align: center;
}

/* === Основной текст === */
p {
    font-size: 24px;
    color: #afeeee;
    line-height: 1.5;
    margin: 10px 10px 10px 10px;
    text-shadow: 1px 1px 3px rgba(50,0,0,0.2);
    text-align: center;
    font-weight: 500;
}