html,
body {
    font-family: 'Roboto', serif;
    background-color: #e5e5e5;
    background-image: url(pics/bg.jpg);
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100%;
}
#logos {
    position: absolute;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 15px;
    margin-top: 10px;
}
#logos img {
    margin: 7px;
}
#logos img:first-child {
    width: 130px;
}
#logos img:nth-child(2) {
    width: 70px;
}
main {
    background: #fff;
    width: 800px;
    padding: 30px;
    padding-bottom: 10px;
    padding-top: 10px;
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}
#panel {
    background: #dcdcdc;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 25px;
}
#pict {
    position: relative;
    width: 256px;
    height: 256px;
    -webkit-box-shadow: 0 0 0 12px #b1b1b1;
    box-shadow: 0 0 0 12px #b1b1b1;
    background-color: #fff;
    background-image: url(pics/progress.gif);
    background-position: right;
}
#canvas,
#landscape {
    position: absolute;
    left: 0;
    top: 0;
    cursor: crosshair;
}
#brushes {
    margin-bottom: 20px;
}
#brushes img,
#buttons button,
#landscapes img {
    background: #fff;
    border: solid 1px #dedede;
    border-radius: 10px;
    -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.14);
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.14);
    cursor: pointer;
    opacity: 0.6;
}
#brushes img {
    width: 55px;
    padding: 5px;
}
#brushes img:hover,
#buttons button:hover {
    opacity: 1;
}
#brushes img.active,
#landscapes img.active {
    opacity: 1;
    -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
#landscapes {
    margin-top: 25px;
}
#landscapes img {
    width: 65px
}
button:focus {
    outline: 0;
}
#buttons {
    margin-top: 20px;
}
#buttons button {
    padding: 10px;
    font-size: 18px;
    font-family: 'Roboto', serif;
}
#outputs {
    display: none;
}
#pix2pix_output {
    float: right;
}
h1 {
    color: #6d6d6d;
    margin-bottom: 5px;
}
#impressum {
    display: none;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 0;
    font-size: 0.9em;
    background: #f5f5f5;
    -webkit-box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.3);
    color: #666;
}
#impressum p {
    max-width: 500px;
}
.container {
    margin: 30px;
    margin-top: 20px;
    margin-bottom: 25px;
}
.link_impressum {
    text-align: right;
    margin-bottom: 0;
    margin-top: 10px;
    font-size: 0.8em;
    color: #999;
    cursor: pointer;
}
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
}
a {
    color: #999;
}
@media (max-width:850px) {
    main {
        width: 100%;
    }
}
