#WyssDialog {
    position: absolute;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('../images/holzhintergrund.jpg');
}

#WyssLabel {
    font-size:25px;
    color:white;
    justify-content: center;
}

#WyssChoices{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 50%
}

.WyssButton {
    flex: 1;
    padding: 10px;
    margin: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    background-color: #ffffff;
    transition: background-color 0.2s;
}
.WyssButton:hover {
    background-color: #f0f0f0;
}
