@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'sans-serif';
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100; 
 }
 
 .logo {
     font-size: 25px;
     color: #031540;
     text-decoration: none;
     font-weight: 700;
 }

.navbar a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: .3s;
}

.navbar a:hover,
.navbar a.active {
    color: #00abf0;
}

.home {
    height: 100vh;
    background: linear-gradient(-90deg, #031540 100%, #fff 0%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
}

.container {
    align-items: center;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
}

.skills h2{
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 40px;
    margin-bottom: 5px;
    color: #fff;
    font-size: 16p;
}

.progress-bar{
    background: #fff;
    width: 600px;
    height: 10px;
    border-radius: 5px;
}

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

.progress-bar div span {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: #00abf0;
    float: right;
    margin-top: -15px;
    margin-right: -20;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lua{
    animation: lua 1s linear forwards;
}
.python{
    animation: python 1s linear forwards;
}
.html{
    animation: html 1s linear forwards;
}
.javascript{
    animation: javascript 1s linear forwards;
}
@keyframes lua{
    100%{
        width: 64%;
    }
}
@keyframes python{
    100%{
        width: 89%;
    }
}
@keyframes html{
    100%{
        width: 51%;
    }
}
@keyframes javascript{
    100%{
        width: 73%;
    }
}
