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

:root{
    --h1-font-size: 2rem;
}

@media screen and (min-width: 900px) {
    :root{
        --h1-font-size: 3rem;
    }
}

body{
    margin: 0px;
    padding: 0px;
    font-family: "Poppins";
}

.main h1{
    font-size: var(--h1-font-size);
}

.main img{
    max-width: 400px;
    width: 100%;
}

.section-title{
    position: relative;
    font-weight: bold;
    color: #0d6efd;
    margin-top: 10rem;
    margin-bottom: 5rem;
    text-align: center;
}

.section-title::after{
   position: absolute; 
   content: '';
   width: 80px;
   height: 0.30rem;
   left: 0;
   right: 0;
   margin: auto;
   top: 3.2rem;
   background-color: #0d6efd;
}

.sobre img{
    max-width: 270px;
    width: 100%;
}

.progress{
    height: 4px;
}

.progress-bar-90{
    width: 90%;
}

.progress-bar-75{
    width: 75%;
}

.progress-bar-60{
    width: 60%;
}

.progress-bar-40{
    width: 40%;
}

.progress-bar-20{
    width: 100%;
}

.habilidades img{
    max-width: 370px;
    width: 100%;
}

.jobs img{
    transition: 750ms;
}

.jobs img:hover{
    transform: scale(1.05);
}

.footer{
    background-color: #0d1730;
    color: #ffffff;
    margin-top: 10rem;
}

.footer a{
    color: #ffffff;
    text-decoration: none;
}

.footer a:hover{
    color: #cbcbcb;    
}