    *{
        margin: 0;
        padding: 0;
    }


    body{
        background-repeat: no-repeat;
        background-image: url(BK2.jpg);
        /*Usando Flexbox para centralizar o conteudo da página*/
        display: flex;
        justify-content: center;
        align-items: center;
        /*cor de fundo da Página*/
        background-color: #252525;
}


.container{
       
        width: 500px;
        max-width: 800px;
        max-width: 90vw;
        height: auto;
        /*margin top, right, bottom e left */
        margin: 30px 10px 20px 10px;
    }
.social{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    font-size: 30px;
    letter-spacing:15px;
    text-decoration: none;
    
}
.social a i{
    color:#ffffff 
}
social a i :hover{
    color:#fff;
}

.img-profile-box{
        /*Área onde fica a imagem de perfil*/
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin-bottom: 50px;
    }
.img-profile{
        /*width: 150px;
        height: 160px;
        Border radius 50% para deixar a imagem redonda
        border-radius: 50%;*/
        border-radius: 50%;
        width: 96px;
        height: 96px;
        display: block;
        object-fit:cover;
        object-position: initial;
        filter: none;
    }
    /*Seu Nome*/
.img-profile-box h1{
        margin-top: 15px;
        font-family: 'Roboto', sans-serif;
        font-weight: 600;
        font-size: 22px;
        color:#fff;
        text-align: center;
    }
    /*Seu Cargo*/
.img-profile-box h2{
        font-family: 'Roboto', sans-serif;
        font-weight: 200;
        font-size: 14px;
        color: #fff;
        text-align: center;
    }

    /*Esta classe corresponde à área do link*/
.link-box{
        width: 100%;
        height: 70px;
        border-radius: 10px;
        /*Este box-shadow é conhecido como neumorphism*/
        background: #505050;
        box-shadow: 5px 5px 10px #313131,-5px -5px 10px #3f3f3f;
        display:flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
        cursor: pointer;
    }
    /*Estilizando o texto dos links*/
.link-box a{
        width: 100%;
        height: 100%;
        font-size: 16px;
        font-family: 'Roboto', sans-serif;
        margin-left: 30px;
        color: #fff;
        text-decoration: none;
        display:flex;
        align-items: center;
        justify-content: flex-start;
    }
.link-box i {
        font-size: 25px;
        margin-left:25px;
        color:#fff;
    }
    /*Efeito p/ quando o usuario passar o mouse em cima do link*/
    .link-box:hover{
       /* background-color: #252525;*/
        animation:pulsate 2s ease-in-out;
    }

@keyframes pulsate{
        0%{
            box-shadow:
                0 0 25px #ffffff,
                0 0 50px #000000; 
            ;
        }
    }
    /*Rodapé do projeto*/
footer{
        width: 100%;
        height: 30px;
        color: #fff;
        text-align: center;
        margin-top:50px;
    }