/* style.css */
/* === Общие стили === */
body {
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI', Arial, 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: #b2c6d2;
    font-weight: 700;
    margin: 10px 10px 10px 10px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.2);
    text-align: center;
}

/* === Основной текст === */
p {
    font-size: 24px;
    color: #b2c6d2;
    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;
}

/* === Подпись внизу === */
#host-box {
    position: fixed;
    left: 20px;       /* отступ от левого края */
    bottom: 20px;     /* отступ от низа */
    padding: 10px 15px;
    
    background: rgba(0, 0, 0, 0.6);
    color: #fff;

    border: 2px solid #ffffff44;
    border-radius: 10px;

    font-family: Arial, sans-serif;
    font-size: 14px;

    backdrop-filter: blur(4px); /* аккуратный эффект */
}

/* === Нижняя рамка === */
#box1 {
    position: fixed;
    left: 157px;       /* отступ от левого края */
    bottom: -10px;     /* отступ от низа */
    padding: 50px 99999px;
    
    background: rgba(0, 0, 0, 0.7);
    color: #fff;

    border: 0px solid #000000;
    border-radius: 10px;

    font-family: Arial, sans-serif;
    font-size: 14px;

}

/* === Рамка с лева === */
#box2 {
    position: fixed;
    left: -5px;       /* отступ от левого края */
    bottom: -5px;     /* отступ от низа */
    padding: 99999px 80px;
    
    background: rgba(0, 0, 0, 0.7);
    color: #fff;

    border: 2px solid #000000;
    border-radius: 10px;

    font-family: Arial, sans-serif;
    font-size: 14px;
}