* {
    margin: 0;
    padding: 0;
}

body {
    border: 0;
    margin: 0;
    padding: 5px;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #000;
    text-decoration: underline;
    cursor: pointer;
}

a:hover {
    color: #c00;
}

h2 {
    letter-spacing: -0.25pt;
    line-height: 1.1em;
    font-style: normal;
    font-family: Arial, Verdana, sans-serif;
}

#onlineGame {
    margin: 0 auto 2em auto;
    max-width: 620px;
}

#spielfeld {
    position: relative;
    width: 100%;
    height: 0px;
    margin-bottom: 1em;
}

#credit {
    color: #ccc;
    margin-top: .5em;
}

#gameTitle {
    margin-bottom: 2em;
}

#vorschau {
    margin: 0 0 1.2em 0;
    border: 0px solid;
}

#vorschau img {
    float: left;
    width: 30%;
    height: auto;
    margin: 0 1.5em .8em 0;
}

#spielfeld > * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#spielfeld div {
    position: absolute;
}

#spielfeld .spielfeld {
    background: #fff;
    border: 1px solid #ccc;
}

#spielfeld .startfeld {
    background-color: #f3f3f3;
    border: 1px solid #ccc;
}

#spielfeld #abst {
    display: none;
    width: 2%;
}

#spielfeld #backgroundImage {
    position: absolute;
    width: 100%;
    height: auto;
}

#spielfeld .teile {
    cursor: pointer;
    background-size: 500% auto;
    background-repeat: no-repeat;
    /*
    -moz-transition: transform 1s;
    -webkit-transition: transform 1s;
    -ms-transition: transform 1s;
    -o-transition: transform 1s;
    transition: transform 1s;
    */
}


.message {
    position: absolute;
    display: none;
    z-index: 200;
    padding: 20px;
    min-width: 250px;
    width: 100%;
    max-width: 320px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    text-align: center;
    background-color: #FFF;
    border: 1px solid;
    border-radius: 20px;
    -webkit-box-shadow: 3px 3px 5px 0px rgba(50, 50, 50, 0.36);
    box-shadow: 3px 3px 5px 0px rgba(50, 50, 50, 0.36);
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.message > * {
    margin-bottom: .5em;
}

.message button {
    cursor: pointer;
    padding: 3% 15%;
    font-size: 1em;
    background-color: #c00;
    border: 0;
    color: #fff;
    font-weight: 700;
    margin-top: .75em;
}

