body{
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    font-size: medium;
    width: 100%;
    margin: 0;
    background-color: black;
}

h1{
    color: tomato;
    text-align: center;
}

form{
    width: 1000px;
    margin: auto;
}

button{
    margin-top: 20px;
    background-color: #ffa920;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-color: tomato;
    border-radius: 10px;
}

button img{
    width: 50px;
}

label{
    width: 150px;
    padding: 5px;
}


fieldset{
    margin-bottom: 20px;
    background-color: #FFEDEA;
    border: none;
    border-radius: 10px;
}

fieldset legend{
     font-weight: bold;
     color: tomato;
     background-color: #FFEDEA;
     border-radius: 10px;
     padding: 5px;
}

.formelement_kiezen{
    width: 900px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.formelement_kiezen img{
    width: 200px;
    border-radius: 10px;
    padding-top: 10px;
}

.formelement_pizza{
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}

.formelement_pizza select{
    font-size: medium;
    width: 100px;
}

.formelement_pizza p{
    padding-bottom: 5px;
    margin-bottom: 0;
}

.toppings_container{
    display: flex;
    flex-direction: column;
}

.formelement_levering{
    display: flex;
    flex-direction: row;
    padding-bottom: 5px;
}

.formelement_levering input{
    width: 300px;
}

.levering p{
    text-decoration: underline;
    padding-bottom: 0px;
}

.required{
    color: tomato;
}

.knoptekst{
    font-weight: bold;
    font-size: medium;
    padding: 10px;
}

.knoppen{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.knoppen input{
    background-color: #FFEDEA;
    font-weight: bold;
    border-radius: 10px;
    height: 60px;
    border-color: tomato;
}

.pizza_samenstellen{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 300px;
}

/* .pizza_samenstellen{
    display: none;
}

#samenstellen:checked~.pizza_samenstellen{
    display: block;
} */