 /* relevanter CSS-Code */
* {
    margin:0;
    padding:0;
   }

html, body {
 height: 100%;
 background-color:#333;
}

.site {
 height: auto; 
 min-height: 100%;
 background-color: #333333;
}
header{
    height:50px;
    background-color:#31363C;
    color:#FFCC33;
}

.navbar-brand{
     color:#FFCC33;
}
.navbar-default{
     background-color:#31363C;
     border-left: 1px solid #31363C;
     border-right: 1px solid #31363C;
     
}

.navbar-default .navbar-text{  
     background-color:#31363C;
     color:white;
}
.container {
    text-align:center;
}


.glyphicon-eye-open{
    color:#FFCC33;
    font-size:25px;
}

h3{
    color:#929292;
 
}
a{
  color: #FFCC33 ;
  text-decoration: none;  
}
a:hover {
    color: #FFCC33 ;
    text-decoration: none;
}

main {
 padding-bottom:110px; /* H�he des Footers */
 background-color: #333333;
}





footer {
 background-color: #514D4A;
 height:115px;
 margin-top: -115px; /* H�he des Footers */
}

.copy{
    padding-top: 7px;
    font-size: 14px;
}

.gold{
    color: #CC9900;
    padding-top: 30px;
}
.info{
   color: #FFDCB2 ;
}
.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
 padding:0px;
 border:none;

}
.table{
    margin-bottom:0px;
   
}
.links{
  text-align:left;  
}
.rechts{
    text-align:right;
}
.abstand{
    padding-right:25px;
}




/*Media Query*/
/* Extra-kleine Geräte (Smartphones, weniger als 768px) */
/* Kein Media-Query, weil dies der Standard in Bootstrap ist */

/* Kleine Geräte (Tablets, 768px und breiter) */
@media screen and (max-width:768px){ 
        .info{
            display:none;
        }
        
        .mobil{
            height:115px;
        }
        .gold{
            padding-top:30px;
            font-size: 14px;
        }
        .copy{
        display:none;
        
        }
        .abstand{
            padding-right:25px;
        }
        
     
 }

/*Footer Die Tabelle ausblenden*/
 @media screen and (max-width:992px){
    .copy{
        display:none;
        
        }
        .gold{
            padding-top:30px;
            font-size: 14px;
        }
        .abstand{
            padding-right:25px;
        }
 }

