*{
    margin: 0;
    padding: 0;
}


.container-fluid a{
    color: white;
}

.hover:hover{
    color: yellowgreen;
}

.containerPerfil{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.imagenPerfil{
    width: 24%;
    border-radius: 330px;
}

.containerPortfolio{
    height: 320px;
    width: auto;
    text-align: center;
    background-color: darkorange;
    margin: 0 12px;
    border-radius: 12px;
    box-shadow: 0 0 6px darkorange;
}

.row{
    position: relative;
    top: 36px;
}

.titlePortfolio{
    font-family:monospace;
}

.col{
    display: flex;
    justify-content: center;
}

.row img{
    width: 100px;
    height: 100px;
    border-radius: 8px;
}

.sobreMi{
    display: flex;
    flex-direction: column;
    text-align: center;
}

.sobreMi hr{
    size: 20px;
    border-top: 2px solid;
    opacity: 0.8;
}

.sobreMiDescripcion{
    width: 60%;
    height: auto;
    margin: auto;
    text-align: justify;
    font-size: 1.2rem;
    font-weight: 400;
}

.contacto{
    width: 90%;
    margin: auto;
    background-color: darkorange;
    border-radius: 12px;
    box-shadow: 0 0 6px darkorange;
    padding-bottom: 20px;
}

.contacto h3{
    text-align: center;
    margin: 40px 0;
    padding-top: 20px;
    font-family:monospace;
    font-size: 20px;
    font-size: 2rem;
}

.containerForm{
    width: 80%;
    margin: auto;
}

Footer{
    background-color: rgba(15, 38, 73);
    height: 200px;
    display: flex;
    align-items: center;
    padding-bottom: 16px;
}

footer .container{
    color: white;
}

.containerFooter{
    position: relative;
    top: -30px;
}

.footerCol1{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footerCol2{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.redesContainer img{
    width: 30px;
    height: 30px;
}

.copy{
    height: 30px;
    background-color: rgb(8, 26, 53);
    color: white;
    text-align: center;
}

@media(min-width: 576px){
    .row img{
        width: 150px;
        height: 150px;
        border-radius: 8px;
    }

    .sobreMiDescripcion{
        font-size: 1.4rem;
    }

    .redesContainer img{
        width: 30px;
        height: 30px;
    }
}

@media(min-width: 768px){
    .row img{
        width: 200px;
        height: 200px;
        border-radius: 8px;
    }

    .sobreMiDescripcion{
        font-size: 1.6rem;
    }
    .row{
        position: static;
    }

    .redesContainer img{
        width: 30px;
        height: 30px;
    }

    .containerFooter{
        position: static;
    }

    footer{
        padding-bottom: 0;
    }
}