Загрузка данных


<!DOCTYPE html>
<html>
<head>
    <title>Задание 5 - Три слоя</title>
    <style>
        .container {
            position: relative;
            margin: 100px;
            font-size: 60px;
            font-weight: bold;
            font-family: Arial, sans-serif;
        }

        /* Самый нижний слой (синий/темный) */
        .layer3 {
            position: absolute;
            left: 10px;
            top: 10px;
            z-index: 1;
            color: blue;
        }

        /* Средний слой (зеленый) */
        .layer2 {
            position: absolute;
            left: 5px;
            top: 5px;
            z-index: 2;
            color: green;
        }

        /* Самый верхний слой (красный) */
        .layer1 {
            position: absolute;
            left: 0;
            top: 0;
            z-index: 3;
            color: red;
        }
    </style>
</head>
<body>

    <div class="container">
        <div class="layer3">Поздравляю!</div>
        <div class="layer2">Поздравляю!</div>
        <div class="layer1">Поздравляю!</div>
    </div>

</body>
</html>