*{
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;

}

html {

    scroll-behavior: smooth;
}


body{   
    color: white;
    background-color: rgb(45, 51, 51);
    scroll-behavior: smooth;
}

header{
    margin-bottom: 100px;
}


.habilidades{
    width: 450px;
    color: #fff;
    padding: 10px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    border-radius: 40px;
}

.habilidades li{
    margin: 20px 0;
    padding: 10px;
    list-style: none;
}

.barra{
    background: #353b48;
    display: block;
    height: 20px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);

}

.barra:hover{
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);

}

.barra div{
    height: 20px;
    float: left;
    background: linear-gradient(135deg, rgba(236, 0, 140, 1)0%, rgba(252, 103, 103, 1)100%);
}

.html{
    width: 90%;
    animation: html 3s;
}

.css{
    width: 80%;
    animation: css 3s;
}
.js{
    width: 20%;
    animation: js 3s;
}


@keyframes html{
    0%{
        width: 0%;
    }
    100%{
        width: 90%;
    }
}

@keyframes css{
    0%{
        width: 0%;
    }
    100%{
        width: 80%;
    }
}

@keyframes js{
    0%{
        width: 0%;
    }
    100%{
        width: 20%;
    }
}

.home{
    display: flex;
    background: linear-gradient(180deg, rgb(45, 51, 51)0%, rgba(36, 41, 41, 0.459)100%);

}

.home .fotoperfil{

    margin-left: 30px;
    padding: 30px 30px 450px 30px;
    background-color: azure;
    font-size: 20px;
    max-height: 400px;
    text-align: center;
    border-radius: 5px;
}

.fotoperfil img{
    border-radius: 5px;
}

.curiosidades .h3{
    background-color: azure;
    color: black;
    width: 350px;
    padding: 10px 10px;
    margin-left: 50px;
    text-align: center;
    border-radius: 5px;
}

.txt-animado{
    font-size: 20px;
    margin-left: 50px;
    margin-bottom: 40px;
}

.txt-animado span{
    position: relative;
    font-size: 25px;

}

.txt-animado span::before{
    content: "";
    color: #fff;
    animation: palavras 20s infinite;
    
}

.txt-animado span::after{
    content: "";
    position: absolute;
    height: 110%;
    border-left: 2px solid white;
    opacity: 1;
    right: -10px;
    animation: cursor .8s infinite, digita 20s steps(70) infinite;
    height:32px;
    width: calc(100% + 13px);
    background-color: #2c3232 ;
    
}

@keyframes cursor{
    0%{
        border-left: 2px solid rgb(45, 51, 51);
    }

}

@keyframes digita{
    10%, 15%, 30%, 35%, 50%, 55%, 70%, 75%, 90%, 95%{
        width: 0;
    }
    5%, 20%, 25%, 40%, 45%, 60%, 65%, 80%, 85%{
        width: calc(100% + 13px);
    }
}

@keyframes palavras {
    0%, 20%{
        content: "Tenho 23 anos e moro no Espirito Santo-Brasil.";
    }
    21%, 40%{
        content: "Estudo no Instituto Federal do Espirito Santo - IFES.";
    }
    41%, 60%{
        content: "Gosto de jogos onlines, principalmente cooperativos.";
    }
    61%, 80%{
        content: "Sou Fã de Doctor Who.";
    }
    81%, 100%{
        content: "Amo esportes e atualmente faço capoeira e ando de skate.";
    }
    
}

.boxcurriculo{
    background: azure;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    padding: 20px;
    min-width: 400px;
    max-width: 400px;
    margin-bottom: 40px;
    
}

.boxcursos{
    background: azure;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    padding: 20px;
    margin-left: 140px;
    margin-right: 140px;
    margin-top: 20px;
}  

.cursos{
    padding-bottom: 40px;
}

.layout{
    background: linear-gradient(180deg, rgb(45, 51, 51)0%, rgba(36, 41, 41, 0.459)100%);
}

.layout span{
    font-size: 40px;
    margin-top: 45px;

}

.layout h3{
    margin-top: 20px;
    color: rgb(91, 255, 241);

}

.layout h5{
    font-weight: 700;
}
.layout ul{
    margin-top: 30px;
    word-break: break-word;
    color: black;
    font-weight: 700;
    
}

.layout ul li{
    font-weight: 300;
}


.contato{
    background: linear-gradient(180deg, rgb(45, 51, 51)0%, rgba(36, 41, 41, 0.459)100%);

}

.contato span{
    font-size: 40px;
    margin-top: 45px;

}

.iconifyicon{
    text-align: center;
    font-size: 18px;
    color: black;
}

a{
    text-decoration: none;
    color: black;
}

a:visited{
    color: black;
}


.footer{
    margin-top: 10px;
    font-size: 14px;
    justify-content: center;
    text-align: center;
    color: white;
    background: linear-gradient(180deg, rgb(45, 51, 51)0%, rgba(36, 41, 41, 0.459)100%);
}

.footer a{
    color: rgb(91, 255, 241);
}

.footer a:visited{
    color: rgb(91, 255, 241);
}