form {
    width: 100%;
}

section > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    width: 80%;
    height: 80%;
    padding: 10px;

    border: 1px solid lightgrey;
    border-radius: 8px;
}

#selDiv {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#numDiv {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
}

select {
    width: 200px;
    height: 40px;
    margin: 18px;
    padding: 10px;
}

input[type="number"] {
    width: 20%;
    height: 10px;

    margin: 10px;
    margin-left: 10px;
    padding: 10px;
}

label{
    font-weight: bold;
    margin-right: 60px;

}