@import url('https://fonts.googleapis.com/css?family=Open+Sans:300|Roboto');

a {
    color: #eee;
    text-decoration: none;
}

a:hover {
    color: #fff;
}

#main {
    background-color: #fff;
    margin: 0 auto;
    display: flex;
    flex-flow: row wrap;
    font-family: 'Roboto', sans-serif;
}

#top {
    background: #2c4451;
    background: linear-gradient(45deg, #2c4451 0%,#3f5f72 100%); 
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
}

#top_logo {
    background-image: url(https://www.bikesportparts.de/ebay/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 62px;
    height: 68px;
    flex-shrink: 0;
    margin-right: 20px;
}

#top_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#top_shopname {
    font-size: 1.6em;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    margin: 0;
}

#desc {
    padding: 20px;
}

#desc_title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 1.8em;
    margin: 0;
}

#desc_body {
    line-height: 1.4em;
}

#side {
    color: #fff;
    background-color: #2c4451;
    line-height: 1.4em;
}

#top, #side, #desc {
    flex: 1 100%;
}

@media all and (min-width: 880px) {
    #top {                    
        background: linear-gradient(45deg, #2c4451 0%,#2c4451 225px,#3f5f72 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    }                

    #top_logo {
        width: 103px;
        height: 113px;
        margin-right: 50px;
    }

    #top_shopname {
        font-size: 2.8em;
    }

    #top_shoplink {
        font-size: 1.2em;
    }                

    #desc_title {
        font-size: 2em;
    }

    #side {
        order: 1;
        flex: 0 300px;
    }

    #desc {
        order: 2;
        flex: 1 0px;
    }
}