*{
    color: black;
    background-color: #EEE;
    font-family: 'Montserrat', sans-serif;
}
h1, h2, h3, h4, h5{
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    text-align: center;
}
h1{
    font-style:italic;
    font-size: 30px;
    width: 84%;
    display: grid;
}
h4{
    font-style: light;
}
h6{
    font-size: 12px;
    margin: 0;
    text-align: center;
}
header{
    padding: 0 2%;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    text-align: center;
    align-items: center;
}
header img{
    width: 100%;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    text-align: center;
}
.inicio{
    width: 100%;
    height: 520px;
    display: grid;
    justify-content: center;
    justify-items: center;
    align-items: center;
}
.obras{
    display: flex;
    width: 84%;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 4% 0 4% 8%;
}
.obras img{
    width: 50%;
    border-radius: 8%;
}
.obras .memoria{
    width: 50%;
}
h4,h5,h6{
    text-align: left;
}
.linea{
    border-top: 1px solid rgb(53, 53, 53);
    height: 1px;
    max-width: 90%;
    padding: 0;
    margin: 8% auto;
}
footer{
    display: flex;
    width: 100%;
    justify-content: space-around;
    flex-direction: row;
    align-items: flex-start;
}
@media (max-width: 550px) {
    h4,h6{
        text-align: center;
    }
    .obras{
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 98%;
        margin-top: 12%;
        padding: 0;
    }
    .obras img{
        width: 100%;
    }
    img{
        max-width: 600px;
    }
    h5{
        text-align: center;
    }
    footer{
        display: grid;
        margin: 10% 0;
        text-align: center;
    }
}