body {
    animation: fadeInAnimation;
    animation-timing-function: cubic-bezier(0,.78,.16,1.01);
    animation-duration: 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    background-color:#000000;
}

.logo {
    width:12%;
    display: block;
    margin-top: 1.5%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    box-shadow: 0px 0px 67px -16px #009cff;
}

.container{
    margin-top: 2%;
    width:100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1{
    font-family: 'Poppins', sans-serif;
    color: white;
    margin-top: 3%;
    text-align: center;
}

.skills{
    font-family: 'Poppins', sans-serif;
    color: white;
}

.progress-bar{
    background-color:rgb(116, 116, 116);
    width: 600px;
    height: 10px;
    border-radius: 5px;
}

.progress-bar div{
    height: 10px;
    border-radius: 5px;
    width: 0%;
}

.progress-bar div span{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: #222;
    float: right;
    margin-top: -15px;
    margin-right: -20px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.html{
    animation: html 1s cubic-bezier(.67,.33,.35,1) forwards;
    background: #ff5487;
}
.css{
    animation: css 1s cubic-bezier(.67,.33,.35,1) forwards;
    background: #006eff;
    animation-delay: 100ms;
}
.javascript{
    animation: javascript 1s cubic-bezier(.67,.33,.35,1) forwards;
    background: #e8ff69;
    animation-delay: 200ms;
}
.c{
    animation: c 1s cubic-bezier(.67,.33,.35,1) forwards;
    background: #00ff73;
    animation-delay: 300ms;
}

.html span{
    border: 1px solid #ff5487;
}
.css span{
    border: 1px solid #006eff;
}
.javascript span{
    border: 1px solid #e8ff69;;
}
.c span{
    border: 1px solid #00ff73;;
}

.footer { 
    position: absolute; 
    bottom: 2%; 
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    z-index: 10;
}

.fa {
    margin-left: 10px;
    margin-right: 10px;
    color:white;
    background: black;
    text-decoration: none;
}

.fa:hover {
    color: #009cff;
}

.fa-youtube-play:hover{
    color:red;
}

@media (max-width:660px)  { 

    .progress-bar div span{
        height: 27px;
        width: 27px;
        border-radius: 50%;
        background: #222;
        float: right;
        margin-top: -8px;
        margin-right: -20px;
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo {
        margin-top: 5%;
        width:40%;
    }

    h1{
        font-size: 150%;
        margin-top: 5%;
    }

    .skills{
        font-size: 70%;
        margin-top: 6%;
    }

    .progress-bar{
        margin-bottom: 20px;
        width:250px;
        height: 8px;
    }

    .footer{
        bottom:8%
    }

 }

@media (min-width:661px) and (max-width:1100px)  { 

    .logo {
        margin-top: 3%;
        margin-left: auto;
        margin-right: auto;
        width:20%;
        border-radius: 50%;
        box-shadow: 0px 0px 67px -16px #009cff;
    }

    h1{
        margin-top: 5%;
    }

    .footer{
        bottom:8%
    }

 }



@keyframes html{
    100%{
        width:84%
    }
}

@keyframes css{
    100%{
        width:67%
    }
}

@keyframes javascript{
    100%{
        width:38%
    }
}

@keyframes c{
    100%{
        width:6%
    }
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}