
/* latin-ext */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4uaVIGxA.woff2) format('woff2');
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVI.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body {
    background-color: azure;
}

header {
    margin: auto;
    background-color: rgba(27, 135, 224, 0.53);
    color: rgb(54, 107, 146);
    height: 5vh;
    width: 60vw;
    min-width: 250px;
    border-radius: 5px;
    text-align: center;
    font-size: 2em;
}

.apartado {
    margin: auto;
    width: 55vw;
    cursor: pointer;

    overflow: hidden;
}

.titulo {
    margin: 2px auto;
    background-color: rgb(59, 230, 245);
    color: #e8ffff;

    border-radius: 5px 5px 0 0;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: normal;
    font-style: normal;
}

.descripcion {
    height: 0;
    position: relative;
    -webkit-transition: height 0.8s, visibility 0.8s ease-out;
    transition: height 0.8s, visibility 0.8s ease-out;

    visibility: hidden;

    overflow: hidden;
    background-color: rgba(83, 239, 201, 0.69);
    color: darkolivegreen;
    padding: 1px 2px 1px 4px;
}

.descripcion img {
    border: 2px solid white;
    position: relative;
}

.descripcion a {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 150px;
}

.hide {
    visibility: hidden;
    height: 0;
}

.show {
    visibility: visible;
    height: 10em;
}