:root {
    --primary-color: #01eeff;
  }

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

html{
    scroll-behavior: smooth;
}


body {
    background-color: rgb(0, 0, 0);
    height: 100vh;
}

.maquina-escrever{
text-align: center;
color: white;
}

.texto-de-quebra{
    color: #ffffff;
    margin: 50px;
    font-size: 18;
    text-align: center;
    font-weight: 200;
}

.maquina-escrever:after{
content: '|';
 margin-left: 5px;
 opacity: 1;
 animation: pisca .7s infinite; 
}

@keyframes pisca{
    0%, 100%{
        opacity: 0.4;
    }
    50%{
        opacity: 0;
    }
}
 
section.inicio{
    padding: 20px 4%;
}

.container-hard-skils{
    color: #f3f3f3;
    margin: 80px;
    border: 3px solid var(--primary-color);
    border-radius: 30px;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 40px var(--primary-color);
    background-color: rgb(20, 20, 20);
    
}

.info{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.obs{
    margin-top: 60px;
text-align: center;
margin-bottom: 20px;
font-size: 24px;
font-weight: 200;
padding-left: 5px;
padding-right: 5px;
}


.texto{
   padding: 20px;
}


.titulo{
    font-size: 32px;
    text-align: center;
    font-weight: 200;
}

.titulo-soft{
    font-size: 24px;
    text-align: center;
    font-weight: 200;
}

@media screen and (max-width: 870px) {


    .titulo{
        font-size: 24px;
        margin-bottom: 40px;
    }

    .titulo-soft{
        font-size: 24px;
        margin-bottom: 40px;
    }

    .texto{
        font-size: 16px;
    }

    .obs{
        font-size: 24px;
    }

  
    .container-hard-skils{
        margin: 80px 10px;
        box-shadow: 0px 0px 23px var(--primary-color);
    }


    .info{
        flex-direction: column;
    }

    .texto{
        text-align: center;
    }

}