* {
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: black;
}

header {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: white;
}

header img {
    width: 300px;
    height: auto;
}

nav {
    margin-left: auto;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: black;
    padding: 8px 12px;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav a:hover {
    background-color: black;
    color: white;
}

.proyectos {
    background-color: black;
    color: white;
    padding: 50px 40px;
}

.proyectos h1 {
    font-size: 38px;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    text-align: center;
    color: white;
}

.intro-proyectos {
    font-size: 17px;
    line-height: 1.6;
    text-align: justify;
    color: white;
    max-width: 1000px;
    margin: 0 auto 40px auto;
}

.proyectos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.proyecto {
    border: 1px solid white;
    padding: 25px;
    background-color: black;
    color: white;
    transition: background-color 0.4s ease, color 0.3s ease;
}

.proyecto:hover {
    background-color: white;
    color: black;
}

.proyecto img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.proyecto h2 {
    margin: 0 0 15px 0;
    text-transform: uppercase;
    font-size: 24px;
}

.proyecto p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.proyecto a {
    color: inherit;
    text-decoration: underline;
}

.proyecto a:hover {
    background-color: black;
    color: white;
    padding: 2px 6px;
}

.descarga-proyecto {
    margin-top: 50px;
    text-align: center;
}

.descarga-proyecto h2 {
    text-transform: uppercase;
    margin-bottom: 15px;
}

.descarga-proyecto p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.descarga-proyecto a {
    color: white;
    text-decoration: underline;
}

.descarga-proyecto a:hover {
    background-color: white;
    color: black;
    padding: 4px 8px;
}

.volver-arriba {
    text-align: center;
    margin-top: 40px;
}

.volver-arriba a {
    color: white;
    text-decoration: underline;
}

.volver-arriba a:hover {
    background-color: white;
    color: black;
    padding: 4px 8px;
}

.footer {
    background-color: black;
    padding: 20px 40px 10px 40px;
    text-align: center;
}

.footer p {
    margin: 0;
    font-size: 12px;
    color: #777;
    line-height: 1.4;
}