*{
    padding: 0;
    border: 0;
    margin: 0;
}
nav ul li {
    list-style: none;
}
nav a {
    text-decoration: none;
    color: black;
}
header {
   color: aqua;
}
#main h2 {
background-color: plum;
text-align: center;
}


#contenido-principal {
    background-color: powderblue;
}
main {
    background-color: powderblue;
}
footer {
    background-color: palegreen;
    text-align: center;
}
@font-face { /*Fuente Inportada*/
font-family: MiFuente1;
src: url(/Tp06AgustinCuellar/font/webfont/hero-webfont.woff),
url(/Tp06AgustinCuellar/font/webfont/hero-webfont.woff2);
}
@media all and (min-width:320px) {
#contenido-principal a img {
    width: 9vw;
}
#contenido {
    display: none;
}
#audio{
    width: 100%;
}
#videos video{
    width: 100%;
}
#contenedor-enlaces {
    height: 0;
    transition: height 1s ease;
    overflow: hidden;
}
#main img{
    width: 100%;
}
main img {
    width: 100%;
}
#main {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    column-count: 1;
    column-gap: 10px ;
    column-rule: solid 1px gray;
}
#cerrar {
    display: none;
}
#contenido-principal:target #abrir {
    display: none;
}
#contenido-principal:target #cerrar {
    display: block;
}
#contenido-principal:target #contenedor-enlaces {
    height: 55vw;
}
#contenedor-enlaces li {
background-color: palevioletred;
padding: 1em;
margin-top: 0.5em;
margin-bottom: 0.5em;
}
#contenedor-enlaces a {
    padding: 1em;
}
}
@media all and (min-width:370px) {
    #main {
        column-count: 2;
    }
}
@media all and (min-width:440px) {
    #main {
        column-count: 3;
    }
    #contenido-principal:target #contenedor-enlaces {
        height: 40vw;
    }
}
main figure {
max-width: 462px;
margin: 0 auto;
}
@media all and (min-width:720px) {
    
    
    #contenedor-enlaces li {
        margin: 0;
        padding: 0;
        background-color: powderblue;
    }
    #contenedor-enlaces {
        height: auto;
    }
    #abrir, #cerrar {
        display: none;
    }
    #contenedor-enlaces {
        display: flex;
        justify-content: center;
    }
    #contenedor-enlaces a {
        padding: 1em;
        color: black;
        background-color: powderblue;
        border-radius: 15px;
        transition: background-color 70ms linear;
    }
    #contenedor-enlaces li {
        padding: 1em;
    }
    #contenedor-enlaces a:hover, #contenedor-enlaces a:focus{
        background-color: red;
        color: white;
    }
}
@media all and (min-width:1024px) {
    
}