
/* *{} informações que vao ser aplicadas a todo o site
classes no CSS*/
*{
    box-sizing: border-box;
}

body{
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
    margin: 0px;
}

h1 {
    font-size: 30px;
}

p{
    font-size: 18px;
}

a{
    text-decoration: none;
}

/*HEADER BANNER*/

.banner{
    background: url(../img/pbThamirys\ Abilio.jpg) center no-repeat;
    background-size: cover;
    height: 700px;
}
.banner__conteudo {
    padding: 230px ;
    color: white;
    text-align: left;    
}
.banner__titulo {
    font-size: 40px;
    margin-bottom: 0px;
}
.banner__subtitulo{
    font-size: 18px;
}
.botao{
    background-color: white;
    color: #7E459B;
    border-radius: 20px;
    text-transform: uppercase;
    padding: 10px 20px;
    font-weight: bold    
}
/*SOBRE MIM*/
.container{
    margin: 0  auto;
    width: 100%; /*esse container vai ocupar 100% do que ele pode ocupar*/
    max-width: 1080px;
    margin-top: 90px;
}
.sobremim-titulo{
    font-size: 30px;
    color: #7e459b;
}
.sobre{
    display: flex;
}
.sobre__descricao, .sobre__habilidades   {
    width: 50%;
    line-height: 30px;
}

.sobre__habilidades {
    margin-left: 70px;
}

.sobre__habilidades-lista {
    font-size: 18px;
}

.sobre__cv {
    border: 1px solid #7E459B;
}

/*REDES SOCIAIS*/

.redes-sociais{
    display: flex;
    justify-content: space-evenly;
}

.redes-sociais__link{
    background-color: #7E459B;
    color: white;
    text-align: center;
    padding: 10px;
    width: 20%;
}
.copyright{
    color: black;
    text-align: center;
}