body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 100vh;
    width: 100vh;
    background-image: url(../media/pinguin/background.png);
    background-size: cover;
    background-repeat: no-repeat;
}

h1 {
    color: black;
}

#container {
    width: 90%;
    height: 45%;
    position: absolute;
    top: 20%;
    left: 5%;
}

#links {
    width: 50%;
    float: left;
}

#rechts-titel {
    color: black;
}

#rechts {
    width: 40%;
    float: right;
}

#titel {
    font-size: 1.2em;
    margin-bottom: 10px;
    justify-content: center;
    text-align: center;
}

#vraag {
    background-color: rgb(255, 238, 0);
    border-radius: 15px;
    padding: 15px;
    width: 80%;
    height: 22%;
    margin: auto;
    text-align: center;
    font-size: 20px;
}

#antwoorden {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20%;
}

.antwoord {
    border: 2px solid #FFE81F;
    border-radius: 15px;
    padding: 10px;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url(../media/pinguin/answer.png);
    background-size: cover;
    background-repeat: no-repeat;
}

#score {
    background-color: rgb(255, 238, 0);
    border-radius: 15px;
    width: 100%;
    height: 40vh;
    text-align: center;
}

#scorebord {
    display: none;
    background-color: rgb(255, 238, 0);
    border-radius: 15px;
    width: 100%;
    height: 30vh;
    text-align: center;
    overflow-y: auto;
    margin-top: 20px;
    font-size: 40px;
}

#scorebord ul {
    list-style-type: none;
    padding: 0;
}

#scorebord ul li {
    padding: 10px;
    font-size: 18px;
    border-bottom: 1px solid #ccc;
}

#scorebord ul li:nth-child(even) {
    background-color:rgb(255, 248, 155);
}

#volgende {
    font-size: 30px;
    background-color: #FFE81F;
    border: 0px;
    border-radius: 15px;
}