.proyectos-title{
    display: flex;
    color:  #f7f8f7;
    margin-top: 2rem;
    justify-content: center;
    font-size: 1.6rem;
    text-shadow: black 0.1em 0.1em 0.1em;
    font-family: 'Source Code Pro', monospace;
    letter-spacing: 0.12em;
}
.proyectos_general{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    background-color: #242d28;
    width: 100%;
    padding: 2%;
    /* flex-flow: row wrap; */
}

.container-proyectos{
    margin-top: 2rem;
    margin-right: 3%;
    display: flex;
    flex-direction: column;
    align-content: center;
    width: 300px;
    height: 300px;
    background: rgb(218, 125, 236);
    border-top-right-radius: 1em;
    border-bottom-left-radius: 1em;
    border: 4px solid rgb(246, 245, 247);
}
.container-proyectos:hover{
    background: rgb(182, 20, 155);
    transition: 1s;
    border: 4px solid rgb(155, 7, 7);
    transition: 1s;
    transform: scale(1.1);
    
}
.box__proyectos{
    display: flex;
    width: 300px;
    height: 200px;
    justify-content: center;
    text-align: center;
}
.contain__text__proyectos{
    display: flex;
    margin-left: 20px;
    line-height: 1.5em;
}
.img__proyectos{
    border-top-right-radius: 1em;
    width: 300px;
    height: 150px;
}

.titulo_proyecto{
   display: flex;
   color: rgb(230, 223, 223);
   margin-top: 1em;
   padding: 0; 
   justify-content: center; 
   font-size: 1rem; 
   font-family: 'Source Code Pro', monospace;
   line-height: .2em;
}

.parrafo__proyecto h5{
    display: flex;
    font-size: 0.8rem;
    line-height: 1.5em;
    padding: 1em;
    color: rgb(41, 246, 140);
}
/*Responsive*/
@media (max-width: 800px){
    .proyectos-title{
        font-size: small;
    }
}