```css
/* =========================================
   ESTILOS GENERALES
   Página TP Vatrano - Policaro
   ========================================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 30px;
    min-height: 100vh;

    font-family: Arial, Helvetica, sans-serif;
    text-align: center;

    background: linear-gradient(135deg, #f4f7fb, #dfe8f3);
    color: #222;
}


/* =========================================
   NOMBRE DEL INSTITUTO
   ========================================= */

body {
    font-size: 20px;
    font-weight: bold;
}


/* =========================================
   LOGO DEL INSTITUTO
   ========================================= */

body > img {
    width: 100px;
    height: 100px;

    object-fit: contain;
    vertical-align: middle;

    margin: 10px 0 30px 15px;
}


/* =========================================
   TÍTULOS DE LOS TRABAJOS
   ========================================= */

h2 {
    width: 80%;
    max-width: 700px;

    margin: 30px auto 15px;
    padding: 15px;

    background-color: white;

    border-radius: 12px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

    font-size: 24px;

    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}

h2:hover {
    transform: translateY(-3px);

    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.20);
}


/* =========================================
   ENLACES
   ========================================= */

a {
    color: #174a7e;

    text-decoration: none;

    transition: color 0.3s ease;
}

a:hover {
    color: #0b78c5;

    text-decoration: underline;
}


/* =========================================
   IMÁGENES DE LOS TRABAJOS
   ========================================= */

body > img:not(:first-of-type) {
    width: 400px;
    height: 400px;

    max-width: 90%;
    object-fit: contain;

    margin: 10px auto 30px;

    border-radius: 15px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.20);

    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}

body > img:not(:first-of-type):hover {
    transform: scale(1.03);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}


/* =========================================
   DISEÑO PARA CELULARES
   ========================================= */

@media (max-width: 600px) {

    body {
        padding: 15px;
        font-size: 17px;
    }

    body > img {
        width: 80px;
        height: 80px;
    }

    h2 {
        width: 95%;
        font-size: 20px;
        padding: 12px;
    }

    body > img:not(:first-of-type) {
        width: 90%;
        height: auto;
    }
}
```
