html, body  {
    min-height: 100%;
    height: 100%;
    overflow: hidden; /*FIXME: problem?*/
    cursor: none; /* crosshair, wait, progress, or costum cursor ? // with 'none' it's like a riddle  TODO: zoom-in on nothing-Text?!*/
}



/**
* 1.0 - Typography
*/

@font-face {
    font-family: 'AnotherTypewriter';
    src: url( "../fonts/atwriter.ttf") format('woff'); /* medium */
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'IBM';
    src: url( "../fonts/AcPlus_IBM_VGA_8x16.ttf") format('woff'); 
    font-weight: normal;
    font-style: normal;
}

a {
    text-decoration: none;
}

/* unvisited link */
a:link {
    color: rgba(255,255,255,0.5);
}
/* visited link */
a:visited {
    color: rgba(255,255,255,0.2);
}
/* mouse over link */
a:hover {
    color: transparent;
}
/* selected link */
a:active {
    color: transparent;
}

/**
* ...
*/

body {
    /*font-family: AnotherTypewriter, Georgia, serif;*/
    font-family: "IBM", Arial, Helvetica, sans-serif;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.05em;

    background-color: black;
    margin:0;
    padding: 2rem;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

input {
    font-family: AnotherTypewriter, Georgia, serif;
    letter-spacing: 0.05em;
}

#main{
    max-width: 100%;
    max-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer{
    letter-spacing: 3px;
    flex: 1;
    position: absolute; 
    bottom: 0px; 
    width: 100%; 
    padding: 10px 20px 10px 0; 
    font-size: 2rem;
    text-align: right
}

/** LOGIN DIALOG **/
/*overlay for password form*/
.full-overlay {
    position: fixed;
    /*display: none;*/
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,1);
    z-index: 2;
    /*cursor: pointer;*/

    display: flex;
    justify-content: center;
    align-items: center;

    color: black;
}

form#login-form *{
    width: 10rem;
    margin: 0.3rem;
}

#login-text{
    font-size: larger;
}

#login-password{
    padding: 0.3rem;
}

#login-button{
    padding: 0.3rem;
    font-size: larger;

    border: 1px solid black;
    background-color: transparent;

    cursor: pointer;
}

#login-button:active{
    transform: translate(0.1rem,0.1rem);
}


.impressum{
    overflow: auto;
}

.headline-nothing{
    font-size: 5rem;
    color: rgba(0,0,0,0);
}