/* reset */
body {
}
P, SECTION, IMG {
    margin: 0px;
    padding: 0px;
}
#about {
    border: 1px solid rgb(15,35,135);
    border-radius: 8px 0 0 0;
    bottom: -1px;
    padding: 5px;
    position: fixed;
    right: -1px;
    text-align: center;
    z-index: 2;
    
    background-color: rgb(15,35,135);
    color: white;
}
#about A {
    color: white;
}
#card {
    border: 1px solid rgb(15,35,135);
    
    -webkit-box-shadow: 0px 0px 15px rgb(15,35,135);
       -moz-box-shadow: 0px 0px 15px rgb(15,35,135);
            box-shadow: 0px 0px 15px rgb(15,35,135);
    
    width: 400px;
    height: 250px;
    
    position: absolute;
    
    top: 50%;
    left: 50%;
    
    margin-left: -200px;
    margin-top: -125px;
 
    z-index: 3;
    background-color: white;
}

#card .logo {
    color: white;
    
    padding: 3px 20px 1px 20px;
    
    margin-top: 25px;
    
    font-size: 30px;
    
    display: inline-block;
    
    padding: 1px;
    margin-left: -2px;
}

#card .address {
    font-family: Verdana,Helvetica,sans-serif;
    
    text-align: right;
    
    margin-top:   25px;
    margin-right: 15px;
    
    font-size: 14px;
}

#card .address > P:first-child {
    font-weight: bold;
}

#card .address .contact {
    margin-top: 20px;
}
#card .address .contact LI {
    list-style: none;
    font-size: 12px;
}

.projects {
    position: absolute;
    
    border: 1px solid rgb(15,35,135);
    
    -webkit-box-shadow: 0px 0px 15px rgb(15,35,135);
       -moz-box-shadow: 0px 0px 15px rgb(15,35,135);
            box-shadow: 0px 0px 15px rgb(15,35,135);
    
    border-radius: 8px;

    z-index: 2;
    padding: 10px;
}
.projects:hover {
    background-color: silver;
}
.projects.tuwadu {
    top: 50px;
    left: 50px;
    
    border: 1px solid rgb(206,238,159);
    
    -webkit-box-shadow: 0px 0px 15px rgb(206,238,159);
       -moz-box-shadow: 0px 0px 15px rgb(206,238,159);
            box-shadow: 0px 0px 15px rgb(206,238,159);
}

.content {
    position: absolute;
    top: 0px;
    left: 0px;
        
    width: 100%;
    min-height: 100%;
        
    z-index: 1;
    
    /*
    background-color: silver;
    
    background-image: -webkit-linear-gradient(#0F2387 0%, white 100%); 
    background-image: -moz-linear-gradient(#0F2387 0%, white 100%); 
    background-image: -o-linear-gradient(#0F2387 0%, white 100%); 
    background-image: linear-gradient(#0F2387 0%, white 100%);  
    */
    background-color: #0F2387;
}

.impressum {
    position: absolute;
    top: 50px;
    left: 50%;
    bottom: 50px;
    
    margin-left: -300px;
    width: 600px;
    
    background-color: white;
    border: 0px solid rgb(15,35,135);
    border-radius: 8px;

    padding: 50px;
    
    overflow: auto;
    z-index: 5;
}
.impressum A {
    text-decoration: none;
    color: black;
}
.impressum.close {
    text-align: right;
}
