body{
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    background: rgb(58,58,58);
    color: white;
    margin: 0;
    padding: 0;
    }
header{
    background-color: black;
    background-image: url(images/tastatur2.png);
    background-size: 100%;
    background-position: center;
    padding: 20px; 
    height: 100px; 
    text-align: center;
}
header .logo a{
    background-image: url(images/Logowhite.png);
    background-size: 60px;
    background-repeat: no-repeat;
    position: relative;
    width: 60px;  
    height: 60px;
    top: -22px;
    display: inline-block;
    text-indent: -999999px;
}
header a{
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 40px;
}
header .mobile{
    display: none;
}
nav ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
}
nav li{
    display: inline-block;
    margin-right: 20px;
}

/* Responsives Rules */

@media screen and (max-width: 500px) {
    header{
        height: 200px;
    }
    header .mobile{
        display: block;
        padding-top: 10px;
    }
    header .desktop{
        display: none;
    }
}

div{
    background: white;
    margin: auto;
}
.break{
    flex-basis: 100%;
    height: 0;
}
section{
    background: white;
    color: grey;
    padding: 20px;
    flex-direction: row;
    text-decoration: none!important;
}
.links a{
    display: block;
    text-decoration: none!important;
    color: grey;
}
.noDecoration, a:link, a:visited 
{
    text-decoration: none;
}
.features{
    display: flex;
    background: white;
    color: grey;
    padding: 20px;
    flex-direction: row;
    flex-wrap: wrap;
}
.features figure{
    margin: 20px;
    width: 100px;
    text-align: center;
}
.features figure img{
    width: 100px;
    height: 100px;
    border: 1px solid white;
    border-radius: 50%;
    box-shadow: grey 0 0 5px;
}
.features a{
    text-decoration: none;
    color: grey;
}
footer{
    background: black;
    color: grey;
    font-size: 10px;
    padding: 20px 20px;
    text-align: center;
    width: 100%;
}