
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #778da9;
    color: #f1f1f1;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

header img {
    max-width: 120px;
}

header h1 {
    font-size: 2rem;
    color: #00ffd5;
}

.about {
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 60px 0;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    color: #00d1b2;
    margin-bottom: 10px;
}

.about-text p {
    font-size: 1.1rem;
    color: #1b263b;
}

.about-img {
    flex: 1;
    text-align: center;
}

.about-img img {
    max-width: 600px;
    border-radius: 10px;
}

.section-title {
    font-size: 2rem;
    margin: 60px 0 30px;
    color: #00d1b2;
    border-left: 5px solid #00ffd5;
    padding-left: 15px;
}

.proyectos {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: flex-start;
}

.proyecto {
background: #1e1e1e;
padding: 10px;
border-radius: 10px;
width: auto;
min-width: 150px;
max-width: 150px;
min-height: 70px;
max-height: 70px;

box-shadow: 0 2px 8px rgba(0,0,0,0.3);
display: flex;
flex-direction: column;
align-items: center;
}



.proyecto a {
    display: inline-block;
    margin-top: 6px;
    background-color: #00ffd5;
    color: #121212;
    padding: 8px 4px;
    border-radius: 6px;
    font-weight: bold;
}



footer {
    text-align: center;
    margin-top: 100px;
    padding: 30px;
    color: #888;
    border-top: 1px solid #333;
}

@media screen and (max-width: 768px) {
    .about {
    flex-direction: column;
    text-align: center;
    }


}
