body {
    margin-top      : 5px;
    margin-bottom   : 10px;
    padding         : 0px;
}

@font-face {
    font-family: scratchFont;
    src: url(/font/the-black-festival.ttf);
}

h1 {
    font-family: scratchFont;
    font-size   : 2em;
    color       : #f00;
    text-shadow : 0px 5px 10px #000;
    width       : 70%;
    height:20px;
}
h2 {
    font-family: scratchFont;
    font-size   : 1.7em;
    color       : #f00;
    width       : 70%;
    height:10px;

}
h3 {
    font-family: scratchFont;
    font-size   : 1.7em;
    color       : #f00;
    width       : 70%;
    text-shadow : 0px 3px 6px #000;
    height:10px;
}
.backbtn{
    position: absolute;
    top:173px;
    right:23px;
    font-family: scratchFont;
    text-decoration:none;
    text-shadow : 0px 3px 6px #000;
    font-size:1.3em;
    color: #f00;
    cursor: pointer;
    background-color: #666;
    padding:3px 8px 1px 10px;
    border: 3px outset gray;
    border-radius: 3px; 
    transition: background-color 0.3s;
    font-family: scratchFont;
}

.backbtn:hover {
  background-color: #333;
}
/* HEADER */

#header{
    height  : 150px;
    background-color : #333;
    position: fixed;
    top     : 0px;
    width   : 100%;
    box-shadow: 0px 5px 20px; 
    }
/* ---- -LOGO DIV- ---- */
    #logo{
        position: fixed;
        top   : 4px;
        height: 154px;
        width : 40%;
        background-color : #333;
    }
    #logo .logo {
        position: fixed;
        top     : 4px;
        height: 148px;
        width : 33%;
        background-color : #333;
    }

    img.logo:hover {
        opacity: 1.1;
    }
/* ---- -PLAYER DIV- ---- */
    #player {  
        position: fixed;
        top     : 5px;
        left    : 32%; 
        width   : 40.4%;
        height  : 139px;
        padding-right:0px;
        margin-right:0px;
    }
    iframe#player{
        height  : 122px; 
        text-align: center; 
        border  : 0;
        background-color : #333;
       // background-color: hsla(248, 10%, 10%, .6);
    }
/* ---- -CALENDAR DIV- ---- */    
    #calendar {
        position: fixed;
        top     : 4px;
        left    : 73%;
        width   : 36%;
        height  : 175px;  
        text-align  : center;
    }
    iframe#calendar{
        transform   : scale(0.68); 
        transform-origin: 0 0; 
        width       : 69%; 
        border      : solid 1px #777;
        height      : 175px; 
        overflow    : scroll;
    }





    #tagline {
        position: fixed;
        top     : 0px;
        left    : 42%;
        width   : 55%;
    }

    #player img {
        width   : 100px;
        right   : 2px;
    }
/*    #newplaying{
        position: absolute;
        top: 180px;
        
    }*/
/* ---- -NAVIGATION BAR DIV- ---- */
    #navbar {
        position: fixed;
        top  : 124px;
        right   : 0px;
        width   : 60%;
            z-index :1;

    }
    ul.navbar {
        list-style-type : none;
        margin          : 0;
        padding         : 0;
        overflow        : hidden;
        background-color: #333;
        font-family     : helvetica;
        font-weight     : bold;
        font-size       : 2vh;
    }

    ul.navbar li {
        float: right;
    }
    ul.navbar li a {
        display        : block;
        color          : #fff;
        text-align     : center;
        padding        : 7px 8px;
        text-decoration: none;
    }

    .active {
        background-color: transparent; /* #cc0000; */
    }

    ul.navbar li a:hover:not(.active) {
        background-color: #111;
    }
    
