body {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.gradient {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(to right, #00aec5, #003b88);
    transform-origin: 50%;
}

h1 {
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 100px;
    font-weight: 700;
    text-align: center;
    text-shadow: #0f0f0f64 10px 10px 10px;
    animation: breathing 15s infinite, distance 15s infinite;
    position: absolute;
}

@keyframes breathing {
    0% {
        transform: scale(1) ease-in-out;
    }
    50% {
        transform: scale(2);
    }
    100% {
        transform: scale(1) ease-in-out;
    }
}


@keyframes distance {
    0% {
        text-shadow: #0f0f0f64 10px 10px 3px;
    }

    50% {
        text-shadow: #0f0f0f64 50px 50px 35px;
    }

    100% {
        text-shadow: #0f0f0f64 10px 10px 3px;
    }
}
