@media (min-width: 1025px) {
    body {
        header {
            position: relative;

            .container {
                user-select: none;
                position: absolute;
                /* top: 0; */
                padding: 5%;
                display: block;
                position: absolute;
                bottom: 5vh;
                left: 5vh;
                z-index: 3;
            }

            .block {
                width: 160px;
                height: 160px;
                /* width: 250px;
            height: 250px; */
                margin: auto;
            }



            .circleText {
                overflow: visible;
                animation: rotation 18s linear infinite;

                .circleText__circle {
                    fill: none;
                }

                .circleText__text {
                    fill: #000;
                    font-size: 12px;
                    font-size: 10px;
                    font-size: 11.5px;
                    fill: steelblue;
                    letter-spacing: 0.15em;
                }


            }






        }




    }

    @keyframes rotation {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }
}