*{
    margin: 0;
    padding: 0;
}
body{
    background-color: #111;
}
.cont{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #111;
    height: 100%;
    width: 100%;
}
.cont .svgCont{
    width: 1000px;
    margin-top: 5%;
    transition: all 1s ease;
    transition-delay: 1s;
    animation: opc-b 3s linear 18s forwards;
}
.svgCont svg{
    width: 60%;
    height: 60%;
    margin-left: 15%;
    float: left;
}
.logo-path{
    stroke-dasharray: 2310;
    stroke-dashoffset: 0;
    stroke:#00d2ff;
    animation: writting 12s ease-in forwards, opc 2s linear forwards;
}
@keyframes writting {
    0%{stroke-dashoffset: 2310;}
    100%{stroke-dashoffset: 0;}
}
@keyframes opc {
    0%{opacity: 0;}
    100%{opacity: 1;}
}
.svgCont .dotCont{
    height: auto;
    width: 105px;
    float: left;
    margin-top: 24%;
}
.dotCont .dots{
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #00d2ff;
    float: left;
    margin-left: 15px;
    opacity: 0;
}
.dots:nth-child(1){
    animation: opc-b 3s ease-out 13s 3 forwards;
}
.dots:nth-child(2){
    animation: opc-b 3s ease-out 14s 3 forwards;
}
.dots:nth-child(3){
    animation: opc-b 3s ease-out 15s 3 forwards;
}
.cont p {
    text-align: right;
    font-family: 'poppins', sans-serif;
    font-size: 25px;
    background: -webkit-linear-gradient(180deg, #00eeff, #0088ff, #00eeff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    margin: 5%;
    position: absolute;
    animation: opc 3s linear 20s forwards;
}
@keyframes opc-b {
    0%{opacity: 1;}
    100%{opacity: 0;}
}



@media only screen and (max-width: 200px){
    .svgCont .dotCont{
        height: auto;
        width: 27px;
    }
    .dotCont .dots{
        height: 6px;
        width: 6px;
        margin-left: 3px;
    }
    .cont p{
        font-size: 7px;
        margin-top: 50%;
    }
}
@media all and (max-width: 550px) and (min-width: 201px){
    .cont .svgCont{
        margin-top: 35%;
    }
    .svgCont .dotCont{
        height: auto;
        width: 45px;
    }
    .dotCont .dots{
        height: 10px;
        width: 10px;
        margin-left: 5px;
    }
    .cont p{
        font-size: 10px;
        margin-top: 35%;
    }
}
@media all and (max-width: 1025px) and (min-width: 551px){
    .cont p{
        margin-top: 10%;
    }
}