"/*--------------- HOME ---------------*/
/*custom captions*/
/*.customCaption class is added to the block*/
.customCaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #222222 ;
    background-color: rgba(34,34,34,.60);
    padding: .75em;
}

.customCaption p {
    color: #FFF;
    font-size: 12px;
}

.customCaption h2 {
    color: #FFF;
    text-align: center;
}"

// Favicon

   var favicon = document.createElement('link');

   favicon.type = 'image/png';

   favicon.rel = 'icon';

   favicon.href = 'url(https://static.livebooks.com/ff67d009bbce4877aa39d6a03536956b/i/e34724daf50d4ebfba4feb58fdb688c3/1/5feFb8zhrk/HH%20Logo-03.png)';

   document.getElementsByTagName('head')[0].appendChild(favicon);