/** Ansicht Farbe */
.view-color {
    padding: 50px;
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
}

.view-color > .view-content {
    color: #000000;
}

/** Ansicht Keine Farbe */
.view-colorless {
    padding: 50px;
    background-color: #006eff;
    display: flex;
    justify-content: center;
}

.view-colorless > .view-content {
    color: #FFFFFF;
}

/** Ansicht Farbe Button */
.view-color-button {
    display: inline-block;
    background-color: #006eff;
    text-align: center;
    border: none;
    padding: 20px 50px;
    color: #FFFFFF;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

.view-color-button:hover {
    background-color: #000000;
}

/** Ansicht Keine Farbe Button */
.view-colorless-button {
    display: inline-block;
    background-color: #000000;
    text-align: center;
    border: none;
    padding: 20px 50px;
    color: #FFFFFF;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

.view-colorless-button:hover {
    background-color: #FFFFFF;
    color: #000000;
}