* {
    box-sizing: border-box;
    font-family: 'DM Sans',sans-serif;
    font-size: large;
}

html {
    justify-content: center;
    display: flex;
    background-color: white;
}

body {
    width: 60%;
    background-color:rgb(247, 247, 247) ;
    padding: 20px;
    margin: 0px;
}

form {
    width: 100%;
}
button, .file-input {
    border: none;
    border-radius: 5px;
    padding: 10px;
    background-color: white;
    box-shadow: 5px 5px 5px 0 rgba(0,0,0,0.2), 5px 5px 5px 0 rgba(0,0,0,0.19);
}

button:hover, .file-input:hover {
    border: thin;
    border-style: inset;
}

button {
    width: 100%;
}

.file-input {
    display: block;
    text-align: center;
    margin: 10px 0px 20px;
}

#knoppen {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color:rgb(235, 235, 235) ;
    padding: 20px;
    margin-top: 20px;
}

#fileInput {
    display: none
}




@media screen and (max-width: 900px ) {
    body {
        width: 80%;
    }
  }

@media screen and (max-width: 600px ) {
    body {
        width: 100%;
    }
  }

