
@font-face {
    font-family: 'Tw Cen MT';
    font-style: normal;
    font-weight: normal;
    src: local('Tw Cen MT'), url('Tw Cen MT.woff') format('woff');
}

#bgdiv{
    background-color: #fff;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
}

#frdiv{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

body{
    font-family: 'Tw Cen MT', 'Roboto', 'arial', sans-serif;
    font-size: 16px;
    color: #fff;
}

::selection {
    background-color: #d10000; /* Beispiel: Helleres Blau */
    color: white; /* Optional: Textfarbe des markierten Bereichs ändern */
}

::-moz-selection {
    background-color: #d10000;
    color: white;
}

.badge{
    background-color: #d10000;
    color: #fff;
    border-radius: 10%;
    padding: 5px;
}

.small2{
    font-size: 0.9em;
    color: #fff;
}

.small{
    font-size: 0.9em;
    color: #5a5a5a;
}

p,h1,h2,h3,h4,h5,h6{
    text-shadow: 2px 2px 2px rgba(0,0,0,0.2);

}

@media (min-device-width:120px) and (max-device-width:768px) {

    p,h1,h2,h3,h4,h5,h6{
        text-shadow: none;
        color: #353535;

    }

    p.small2{
        color: #353535;
    }

    #frdiv{
        width: 80%;
    }

    .badge{
        position: relative;
        vertical-align: baseline;
        top: -0.4em;
    }

}