.apresentacao{
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-around;
    height: 90vh;
} 
.fotoDePerfil{
    max-width: 400px;
    border-radius: 10%;
    width: 49%;
}
.apresentacao h1{
    font-size: 40px;
    color: #64ED8B;
}
.apresentacao h4{
    font-size: 32px;
}
.links_contatos{
    margin-top: 30%;
    margin-left: 30px;
    margin-bottom: 50%;

    display: flex;
    column-gap: 20%;
}
.linkedin{
    max-width: 75.3px;
    max-height: 75.3px;
    width: 100%;
    height: 100%;
    background-color: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    border-radius: 10px;
}
.cont-linkedin{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cont-linkedin-blur{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cont-linkedin::before, .cont-linkedin::after{
    content: '';
    position: absolute;
    z-index: -1;
    height: calc(75.3px + 20px);
    width: calc(75.3px + 20px);
    border-radius: 10px;
    background: linear-gradient(235.73deg, #c4f2b7 10.97%,
    rgba(113, 255, 127, 0.946) 17.79%,
    rgba(114, 252, 127, 0.946) 29.32%,
    rgba(96, 205, 107, 0.865) 39.1%,
    rgba(94, 196, 104, 0.742553) 53.67%,
    rgba(51, 171, 63, 0.742553) 64.86%,
    rgba(3, 134, 16, 0.604167) 81.5%,
    rgba(0, 128, 13, 0.604167) 85.9%,
    #004908 95.65%);
    background-size: 400%;
    animation: AnimarBorda 3s alternate-reverse infinite;
}
.cont-linkedin-blur::after, .cont-linkedin-blur::before{
    content: '';
    position: absolute;
    z-index: -1;
    height: calc(75.3px + 20px);
    width: calc(75.3px + 20px);
    border-radius: 10px;
    background: linear-gradient(45deg, rgba(188,255,155,0.9472163865546218) 0%, rgba(0,255,29,1) 50%, rgba(255,255,255,1) 100%);
    background-size: 300%;
    filter: blur(4px);
    animation: AnimarBorda 4s linear infinite;
    animation: blur 0.5s linear normal;
}
.github{
    width: 75.3px;
    height: 75.3px;
    background-color: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    border-radius: 10px;
}
.cont-github{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cont-github-blur{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cont-github::before, .cont-github::after{
    content: '';
    position: absolute;
    z-index: -1;
    height: calc(75.3px + 20px);
    width: calc(75.3px + 20px);
    border-radius: 10px;
    background: linear-gradient(235.73deg, #c4f2b7 10.97%,
    rgba(113, 255, 127, 0.946) 17.79%,
    rgba(114, 252, 127, 0.946) 29.32%,
    rgba(96, 205, 107, 0.865) 39.1%,
    rgba(94, 196, 104, 0.742553) 53.67%,
    rgba(51, 171, 63, 0.742553) 64.86%,
    rgba(3, 134, 16, 0.604167) 81.5%,
    rgba(0, 128, 13, 0.604167) 85.9%,
    #004908 95.65%);
    background-size: 400%;
    animation: AnimarBorda 3s alternate infinite;
}
.cont-github-blur::after, .cont-github-blur::before{
    content: '';
    position: absolute;
    z-index: -1;
    height: calc(75.3px + 20px);
    width: calc(75.3px + 20px);
    border-radius: 10px;
    background: linear-gradient(45deg, rgba(188,255,155,0.9472163865546218) 0%, rgba(0,255,29,1) 50%, rgba(255,255,255,1) 100%);
    background-size: 300%;
    filter: blur(4px);
    animation: AnimarBorda 4s linear infinite;
    animation: blur 0.5s linear normal;
}
@keyframes blur{
    0%{ filter: blur(0px);}
    25%{ filter: blur(1px);}
    50%{ filter: blur(2px);}
    75%{ filter: blur(3px);}
    100%{ filter: blur(4px);}
}
@keyframes AnimarBorda{
    0%{
        background-position: 0;
    }
    100%{
        background-position: 100%;
    }
}
.separador{
    margin-left: 25vw;
    position: static;
    width: 50vw;
    border: 0.5px solid transparent;
    border-image: linear-gradient(90deg, rgba(39,39,39,1) 55%, rgba(3,253,103,1) 100%, rgba(0,212,255,1) 100%);
    border-image-slice: 1;
}

@media(max-width:950px){
    .apresentacao{
        display: flex;
        align-items: center;
        flex-direction: column;
        align-content: center;
        justify-content: center;
        height: 100vh;
    } 
    .contatos{
        margin-top: 15%;
    }
    .fotoDePerfil{
        max-width: 400px;
        width: 300px;
    }
    .links_contatos{
        margin-top: 30%;
        margin-left: 30px;
        margin-bottom: 20%;
    
        display: flex;
        column-gap: 20%;
    }

}

@media(max-width:520px){

    .apresentacao{
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        align-content: center;
        justify-content: center;
        height: 90vh;
    } 
    .fotoDePerfil{
        max-width: 200px;
        width: 90%;
        border-radius: 50%;
    }
    .apresentacao h1{
        
        font-size: 25px;
        color: #64ED8B;
    }
    .apresentacao h4{
        margin-top: 10%;
        font-size: 20px;
    }
    .links_contatos{
        margin-top: 20%;
        margin-left: 10%;
        margin-bottom: 25%;

        display: flex;
        column-gap: 25%;
    }
    .linkedin{
        width: 37px;
        height: 37px;
        background-color: #121212;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 7px;
        border-radius: 10px;
    }
    .cont-linkedin{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .cont-linkedin-blur{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .cont-linkedin::before, .cont-linkedin::after{
        content: '';
        position: absolute;
        z-index: -1;
        height: calc(37px + 17px);
        width: calc(37px + 17px);
        border-radius: 10px;
        background: linear-gradient(235.73deg, #c4f2b7 10.97%,
        rgba(113, 255, 127, 0.946) 17.79%,
        rgba(114, 252, 127, 0.946) 29.32%,
        rgba(96, 205, 107, 0.865) 39.1%,
        rgba(94, 196, 104, 0.742553) 53.67%,
        rgba(51, 171, 63, 0.742553) 64.86%,
        rgba(3, 134, 16, 0.604167) 81.5%,
        rgba(0, 128, 13, 0.604167) 85.9%,
        #004908 95.65%);
        background-size: 400%;
        animation: AnimarBorda 3s alternate-reverse infinite;
    }
    .cont-linkedin-blur::after, .cont-linkedin-blur::before{
        content: '';
        position: absolute;
        z-index: -1;
        height: calc(37px + 17px);
        width: calc(37px + 17px);
        border-radius: 10px;
        background: linear-gradient(45deg, rgba(188,255,155,0.9472163865546218) 0%, rgba(0,255,29,1) 50%, rgba(255,255,255,1) 100%);
        background-size: 300%;
        filter: blur(4px);
        animation: AnimarBorda 4s linear infinite;
        animation: blur 0.5s linear normal;
    }
    .github{
        width: 37px;
        height: 37px;
        background-color: #121212;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 7px;
        border-radius: 10px;
    }
    .cont-github{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .cont-github-blur{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .cont-github::before, .cont-github::after{
        content: '';
        position: absolute;
        z-index: -1;
        height: calc(37px + 17px);
        width: calc(37px + 17px);
        border-radius: 10px;
        background: linear-gradient(235.73deg, #c4f2b7 10.97%,
        rgba(113, 255, 127, 0.946) 17.79%,
        rgba(114, 252, 127, 0.946) 29.32%,
        rgba(96, 205, 107, 0.865) 39.1%,
        rgba(94, 196, 104, 0.742553) 53.67%,
        rgba(51, 171, 63, 0.742553) 64.86%,
        rgba(3, 134, 16, 0.604167) 81.5%,
        rgba(0, 128, 13, 0.604167) 85.9%,
        #004908 95.65%);
        background-size: 400%;
        animation: AnimarBorda 3s alternate infinite;
    }
    .cont-github-blur::after, .cont-github-blur::before{
        content: '';
        position: absolute;
        z-index: -1;
        height: calc(37px + 17px);
        width: calc(37px + 17px);
        border-radius: 10px;
        background: linear-gradient(45deg, rgba(188,255,155,0.9472163865546218) 0%, rgba(0,255,29,1) 50%, rgba(255,255,255,1) 100%);
        background-size: 300%;
        filter: blur(4px);
        animation: AnimarBorda 4s linear infinite;
        animation: blur 0.5s linear normal;
    }
    @keyframes blur{
        0%{ filter: blur(0px);}
        25%{ filter: blur(1px);}
        50%{ filter: blur(2px);}
        75%{ filter: blur(3px);}
        100%{ filter: blur(4px);}
    }
    @keyframes AnimarBorda{
        0%{
            background-position: 0;
        }
        100%{
            background-position: 100%;
        }
    }
    .separador{
        margin-left: 25vw;
        position: static;
        width: 50vw;
        border: 0.5px solid transparent;
        border-image: linear-gradient(90deg, rgba(39,39,39,1) 55%, rgba(3,253,103,1) 100%, rgba(0,212,255,1) 100%);
        border-image-slice: 1;
    }


}