* {
    margin: 0;
}

body{
    display: flex;
    justify-content: center;
}
.base {
    margin-top: 20px;
    width: 60%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.total-points{
    margin-top: 16px;
}

.total-points > label {
    margin-right: 0.3rem;
}
#number-input {
    width: 3rem;
    min-width: 3rem;
    padding:0.2rem;
    text-align: center;
}
#berechne-btn {

    width: 6rem;
    min-width: 4rem;
    padding:0.2rem;
}

.results {
    margin-top: 16px;
}

.results table {   
    border-collapse: collapse;
}
.results th, td {
    width: 3rem;
    border: 1px solid;
    text-align: center;
}

.results th:nth-child(1){
    width: 5rem;
}
#btn-reset{
    margin-top: 16px;
}