*{    
    box-sizing: border-box;
    margin: 0;
}

.banner{
    background-image: url(../img/Facetune_28-05-2020-17-41-29.JPG);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 560px;    
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-filha{
    text-align: center;
}

.banner-titulo{
   font-size: 48px;
   margin-bottom: 20px; 
   text-shadow:  1px 1px 2px black;
}

.banner-subtitulo{
    margin-bottom: 20px;
    font-size: 24px;
    text-shadow:  1px 1px 2px black;
}

.banner-link{
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    text-shadow:  1px 1px 2px rgb(243, 229, 229);
    color: black;
    background-color: white;    
    padding: 10px 20px 10px 20px;    
    border-radius: 50px;
    height: 40px;
    border: 1px solid black;
}

.titulo-sobre{
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
    font-size: 30px;
    color: black;
    text-shadow:  1px 1px 2px rgb(243, 229, 229);
}

.sobre-caixa{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-size: 18px;
}

.banner-link:hover{
    background-color: grey;
}

.texto-resumo{
    margin-top: 10px;
    margin-bottom: 20px;
}

.bold{
    font-weight: bold;
}

.texto-italic{
    font-style: italic;    
}

.sobre-resumo{
  width: 30%;  
  text-align: justify;
}

.sobre-link{
    text-decoration: none;    
}

.sobre-habilidades{
    width: 30%;
}

.sobre-lista{
    margin-top: 20px;
    line-height: 30px;
}

.redes{
    margin-top: 90px;
    display: flex;
    justify-content: space-evenly;
   
}

.redes-link{
    background-color: black;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    width: 15%;
}

.redes-link:hover{
    opacity: 0.8;
}

.redes-titulo{
    margin-top: 9px;
    margin-bottom: 9px;
}

@media(max-width:800px){
    .sobre-caixa{
        flex-direction: column;
        align-items: center;
    }

    .sobre-resumo{
        width: 70%;         
      }

      .sobre-habilidades{
        width: 50%;
    }

    .titulo-habilidades{
        margin-top: 40px;        
    }
    
    .sobre-lista{
        margin-top:10px;
    }
}

@media(max-width:720px){
    .redes{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .redes-link{
        width: 50%;
        margin-top: 20px;
    }
}


