body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
}

header {
    background-color: #2c3e50;
    padding: 1rem;
    color: white;
    text-align: center;
}

nav a {
    margin: 0 1rem;
    color: white;
    text-decoration: none;
}

.contenedor-proyectos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

.tarjeta-proyecto {
    background-color: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tarjeta-proyecto h3 {
    margin-top: 0;
}

.tarjeta-proyecto a {
    display: inline-block;
    margin-top: 0.5rem;
    color: #3498db;
    text-decoration: none;
}

footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}


.contenedor-proyectos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

.tarjeta-proyecto {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 1rem;
    background-color: #f9f9f9;
    transition: 0.3s;
}

.tarjeta-proyecto:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.tarjeta-proyecto a {
    display: inline-block;
    margin-top: 0.5rem;
    color: #007BFF;
    text-decoration: none;
}

.tarjeta-proyecto a:hover {
    text-decoration: underline;
}
