body{
font-family: Arial;
margin:0;
background:#f5f5f5;
}

.header {
    background: #0d1117;
    color: white;
    padding: 50px 20px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: auto;
    gap: 30px;
}

/* TEXTO */
.header-text {
    text-align: center;
    max-width: 800px;
}

.header-text h1 {
    margin: 0;
    font-size: 30px;
}

h2 {
    color: rgb(1, 30, 77);
}
.subtitle {
    text-align: center;
    margin: 10px 0 20px;
    color: #cbd5f5;
}

/* FOTO A LA DERECHA */
.profile-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 10%;
    border: 10px solid #121314;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
}

/* LINKS */
.links a {
    text-decoration: none;
    color: white;
    background: rgba(59, 130, 246, 0.5);
    padding: 8px 15px;
    border-radius: 6px;
    transition: 0.3s;
}

.links a:hover {
    background: #2563eb;
}

.links a{
color:white;
margin:10px;
text-decoration:none;
}

section{
padding:40px;
max-width:900px;
margin:auto;
}

.project{
background:white;
padding:20px;
margin:20px 0;
border-radius:8px;
box-shadow:0 0 5px rgba(0,0,0,0.1);
}

footer{
text-align:center;
padding:20px;
background:#222;
color:white;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .profile-img {
        margin-bottom: 20px;
    }
}