/* 
font-family: 'Merriweather', serif;
font-family: 'Noto Sans Lepcha', sans-serif;
font-family: 'Orbitron', sans-serif;
font-family: 'PT Serif', serif;
font-family: 'Roboto', sans-serif;
font-family: 'Titillium Web', sans-serif;
font-family: 'Ubuntu', sans-serif;


 */

.articulo {
    display: flex;
    width: 700px;
}

.blogitem {
    display: block;
    width: 800px;
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
}

.blogitem:hover {
    background-color: #fae5de;
}

.blogitem div a {
    text-decoration: none;
    color: black;
}

.fecha {
    display: block;
    position: relative;
    max-height: 120px;
    width: 60px;
    background-color: #DE744C;
    color: white;
    border-radius: 6px;
    padding: 10px;
    text-align: center;
}

.contenido {
    display: block;
    width: 630px;
    margin-left: 10px;
}

.mes {
    font-size: .6em;
}

.dia {
    font-size: 2em;
    font-weight: 700;
}

.year {
    font-size: 1.2em;
}

.arttit {
    font-family: 'Merriweather', serif;
    font-size: 2.4em;
    font-weight: 500;
}

.artstit {
    font-family: 'Noto Sans Lepcha', sans-serif;
    font-size: .8em;
    font-weight: 400;
    margin: 5px 0px 20px 0px;
}

.artcont {
    margin: 10px 0px;
    font-family: 'PT Serif', serif;
    font-size: 1.2em;
}

.contenido .mainImage img {
    width: 100%;
}

.mainImageText,
.mainImageAuthor {
    display: block;
    width: 100%;
    margin: 10px 5px;
    font-size: .7em;
}

@media screen and (max-width:1024px) {
    .articulo {
        display: flex;
        width: 650px;
    }
}

@media screen and (max-width:768px) {
    .articulo {
        display: flex;
        flex-direction: column;
        width: 460px;
        margin-left: -30px;
    }
    .arttit {
        font-size: 2em;
        margin-top: 10px;
    }
    .artstit {
        font-size: .8em;
        font-weight: 500;
    }
    .artcont {
        font-size: .9em;
    }
    .contenido {
        display: block;
        width: 460px;
        margin-left: 10px;
    }
    .fecha {
        display: flex;
        width: 120px;
        padding: 3px 10px;
        margin-left: 10px;
    }
    .mes {
        font-size: .6em;
        padding-top: 8px;
        margin-right: 5px;
    }
    .dia {
        font-size: 1.4em;
        font-weight: 700;
    }
    .year {
        font-size: .8em;
        padding-top: 6px;
        margin-left: 5px;
    }
}


/* 
AUDIO 
*/

.audio-player {
    width: 100px;
    height: 20px;
    border-radius: 8px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

audio {
    width: 100%;
    height: 100%;
}

audio::-webkit-media-controls-panel {
    background-color: #eee;
}

audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-pause-button,
audio::-webkit-media-controls-volume-slider-thumb {
    background-color: #DE744C;
    border-radius: 0%;
    margin-left: -10px;
}