.footer{
    padding:10px 0;
    border-top:2px solid #e1e1ff;
}

.share-button{
        border: 1px solid;
    padding: 3px 12px;
    font-size: 11px;
    background-color: black;
    color: white;
}

.volverBtn{
    position:fixed;
    bottom:10px;
    right:10px;
    padding:10px;
    border-radius: 3px;
}

.volverBtn:hover{
    background-color:aquamarine;
    cursor:pointer;
}

.detail-content h1{
    display:none;
}
.detail-content h2, .detail-content h3, .detail-content h4{
    color:#006699;
    font-size: 1.5rem;
}

.detail-content img{
    max-width: 100%;
}

.mermaid{
    text-align: center;;
}

.social-links{
    padding: 1rem;
    display: flex;
    justify-content: space-around;
    border-top: 1px solid #e1e1ff;
}

.social-links a {
    color: #888;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .profile-card {
            background-color: #abddea;
            padding: 30px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            margin-right: 40px;
            box-shadow: 3px 3px 3px 3px #006699;
            border:2px solid white;
        }
        
        .profile-image {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            border:2px solid #006699;
                        box-shadow: 3px 3px 3px 3px #006699;

            overflow: hidden;
            flex-shrink: 0;
        }
        
        .profile-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .profile-text {
            flex-grow: 1;
            color: #333;
            line-height: 1.6;
        }
        
        .profile-text p {
            margin: 0 0 20px 0;
            font-size: 16px;
        }
        
        .profile-text strong {
            font-weight: bold;
        }
        
        @media (max-width: 1200px) {
            .profile-card {
                flex-direction: column;
                text-align: center;
                margin-right: 0px;

            }
            
            .profile-image {
                width: 150px;
                height: 150px;
            }
        }