body {
    margin: 0;
    height: 100%;
    background: url("../content/background.jpg") repeat center;
}

header {
    background-color: #f5f5f5;
    color: #000000;
    text-align: left;
    position: fixed;
    top: 0;
    width: 100%;
    height: 5%;
    z-index: 10000;
}

.plus {
    float: left;
    padding-top: 0.3%;
    margin-left: 5%;
    height: 80%;
    cursor: pointer;
}

.login {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: right;
}

.login a {
    color: #000000;
    text-decoration: none;
    font-size: 2.222vh;
    margin-right: 5%;
}

.login a:hover {
    color: #ff6900;
}

main {
    width: 100%;
    height: 100%;
    background: url("../content/background.jpg") no-repeat center;
    background-size: cover;
    position: relative;
}

.listecek {
    width: 250px;
    min-height: 250px;
    position: absolute;
    cursor: grab;
}

#stav {
    float: right;
    margin-right: 2%;
    margin-top: 2%;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.tabulka
{
    padding: 5% 2% 2% 2%;
    background-color: #e7e7e7;
    width: auto;
    height: 70%;
}

#textContent {
    margin-top: -5%;
    padding: 2%;
    line-height: 1em;
    word-wrap: break-word;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#textContent h1, h2, h3, h4, h5, h6 {
    line-height: 1em;
}

.colorContainer {
    position: absolute;
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #bdbdbd;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 #000000;
}

.colorContainer button {
    margin: 0 1px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.unselectable {
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}