/** COLORS **/
/** WA-WEB **/
:root {
    --purple: #7832cc;
    --lightGrey: #B1B3B5;
    --darkRed: #9e2927;
    --Black: #000;
}
body {
    font-family: Tahoma, Arial, Helvetica, Sans-Serif;
    font-size: 15px;

    background-image: url('flagge.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    background-size: 66%;
    background-color: var(--Black);
    overflow: hidden;
    color: var(--lightGrey);
}
#footer{
    position: absolute;
    bottom: 20px;
}
#footerBtn{
    float: right;
    width: 100px;
    height: 50px;
    display: inline-block;
    background-image: url('btn_offline.gif');
}
#footerBtn:hover{
    background-image: url('btn_online.gif');
}
.h_container{
    /*background-color: #cac7c7;*/
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    display: inline;

}
#heart{
    font-size: 25px;
}
#heart:hover{
    color:var(--darkRed);
}
a, a:active, a:visited, a:focus {
    text-decoration: none;
    color: var(--purple);
}
a:hover {
    text-shadow: 2px 2px 4px var(--lightGrey);
    color:var(--darkRed);
}