#contenedor_modal_proyecto {
    display: none; 
    position: fixed; 
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

#contenedor_modal_proyecto .modal_contenido_resumen {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid lightgray;
    border-top: 10px solid #F1948A ;
    width: 60%;
}

#contenedor_modal_proyecto .close_proyecto_modal {
    color: white;
    background: #F1948A;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

#contenedor_modal_proyecto .close_proyecto_modal:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

#contenedor_modal_proyecto .close_proyecto_modal:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}