body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #3131e0, #4fbaf8);
}

#startpage {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#startpage > .dropdown-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
#startpage label > * {
    margin-left: 10px;
}
#startpage label {
    margin-top: 7px;
}
.container {
    width: 600px;
    /* height: 200px; */ /* Remove or adjust as needed */
    padding: 40px; /* Adjust as needed */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    background: linear-gradient(to bottom, #4a4ae3, #6cc5f9);
}

#start-button {
    font-size: 5rem;
    background-color: rgb(22, 22, 22);
    color: white;
    padding: 0.5em;
    border-radius: 0.5em;
    cursor: pointer;
}

#start-button:hover {
    background-color: rgb(41, 150, 159);
}

#start-button:active {
    background-color: rgb(41, 150, 159);
}

#weiter-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: rgb(41, 150, 159);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 28%;
}

#weiter-btn:hover {
    background-color: rgb(23, 82, 87);
}

#restart-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#restart-btn:hover {
    background-color: #45a049;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    padding: 10px;
    background-color: #f0f0f0;
    margin: 5px 0;
    border-radius: 5px;
}

.hidden {
    display: none !important;
}

#header {
    display: flex;
    font-size: 2rem;
    margin-bottom: 20px;
    background-color: rgb(0, 0, 0);
    color: white;
    justify-content: space-around;
    border-radius: 10px;
    flex-direction: column;
    text-align: center;
}

#question {
    text-align: center;
}

.option-container {
    margin-bottom: 10px;
    border-radius: 5px;
    font-weight: bold;
    color: #ffffff;
    padding-left: 40%;
}

.option-container input[type="radio"] {
    margin-right: 10px;
    accent-color: #676767;
    /* Ändert Farbe in modernen Browsern */
    width: 20px;
    height: 20px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /*background-color: #4d3de1;*/
    color: white;
    text-align: center;
    padding: 30px 0;
    font-size: 35px;
    z-index: 1000;
    /*box-shadow: 0 2px 5px rgba(0,0,0,0.3);*/
}

.options {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #ffffff;

    border-radius: 5px;
}

.option-0 {
    color: rgb(255, 38, 0);
}
