/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


body {
    --width: 20vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: unset;
    padding: unset;
    background-color: #f0f0f0;
    font-family: Arial, Helvetica, sans-serif;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: calc(20vh - 32px);
    padding: 16px;
}

main {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 60vh;
}

footer {
    height: calc(20vh - 32px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px;
}

.gee-logo-grupo, ul {
    margin: unset;
    padding: unset;
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.gee-logo-grupo img {
    max-height: calc(20vh - 32px);
    width: auto;
}

li {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: var(--width);
    height: calc(var(--width) * 0.75);
    margin: 25px;
}

a, a:hover {
    color: #333333;
    text-decoration: none;
    font-weight: bold;
}
a:hover {
    text-decoration: underline;
}
li a img {
    width: 100%;
    height: auto;
    max-width: 100%;
}
footer {
    font-size: 16px;
    text-align:center;
}
footer a img {
    display: inline-block;
    width: 12px;
    height: auto;
}

.logos-europa img {
    display: block;
    width: 768px;
    height: auto;
    margin-bottom: 16px;
}

@media (max-width: 769px) {

    ul { 
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    li {
        width: 50vw;
        height: unset;
        margin: 32px;
    }

    .gee-logo-grupo img {
        width: 80vw;
        height: auto;
    }
    .logos-europa img {
        display: block;
        width: 300px;
        height: auto;
    }
}