/* MADE BY C0MM1T 31/12/2020*/

@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    overflow: hidden;
}
.logo{
    width: 70px;
    height: 70px;
    position: absolute;
    top: 20px;
    left: 20px;
    background: url('logo.png');
    background-size: cover;
    background-repeat: no-repeat;
}
section{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #111, #222, #111);
}
section::before{
    content: '';
    position: absolute;
    width: 30vw;
    height: 30vw;
    border: 5vw solid blueviolet;
    border-radius: 50%;
    box-shadow: 0 0 0 1vw #222,
                0 0 0 1.3vw goldenrod;
}
h2{
    position: absolute;
    font-size: 9vw;
    color: #fff;
    text-align: center;
    line-height: 2em;
    z-index: 9999;
    transform: skewY(-7deg);
    text-shadow: 1px 1px 0 #ccc,
                 2px 2px 0#ccc,
                 3px 3px 0#ccc,
                 4px 4px 0#ccc,
                 5px 5px 0#ccc,
                 8px 8px 0 rgb(0, 0, 0, 0.2);
    animation: floating 5s ease-in-out infinite;
}
h2 span{
    font-weight: 700;
    font-size: 2.5em;
    text-shadow: 1px 1px 0  goldenrod,
                 2px 2px 0 goldenrod,
                 3px 3px 0 goldenrod,
                 4px 4px 0 goldenrod,
                 5px 5px 0 goldenrod,
                 6px 6px 0  goldenrod,
                 7px 7px 0 goldenrod,
                 8px 8px 0 goldenrod,
                 9px 9px 0 goldenrod,
                 15px 15px 0 rgb(0, 0, 0, 0.2);
}
@keyframes floating {
    0%,100%{
        transform: skewY(-7deg) translate(0,-20px);
    }
    50%{
        transform: skewY(-7deg) translate(0,20px);
    }
}
section i{
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff,
                0 0 20px #fff,
                0 0 40px #fff,
                0 0 80px #fff;
    animation: animate linear infinite;
}
@keyframes animate{
    0%{
        opacity: 0;
    }
    10%{
        opacity: 1;
    }
    90%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}