.polllist {
    margin: auto;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-style: solid;
    border-color: var(--maincolor);
    display: flex;
    /* padding: 10px; */
    width: 80vw;
    box-sizing: border-box;
    border-radius: 15px;
}

.polllist ol {
    text-align: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%; /* Volle Breite */
    border-radius: 15px;
    background-color: var(--backgroundcolor);
}

.polllist li {
    position: relative;
    list-style: none;
    padding: 10px;
    margin: 0;
    color: var(--maincolor);
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
    border-radius: 15px;
}

.polllist li:hover {
    background-color: var(--froschgruen);
    /* opacity: 0.35; */
    color: black;
    cursor: pointer;
}

/* TODO: Style a little bit better, like other colors when clicked or whatever */
.polllist li:active{
    filter: brightness(110%);
    opacity: 0.35;
    color: black;
}

#surveyidx {
    visibility: hidden;
    display: none;
}

#infotext {
    font-size: 12px;
}

.customvideo 
{
    display: block;
    justify-content: center;
    justify-self: center;
    height: 350px;
    width: 550px;
    border: none;
}