@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200&display=swap');

*{
    font-family: 'Inter', sans-serif;
    color: aliceblue;
    background-color: rgb(67, 80, 93);
}

/* Index & CRUD-update */
.index,h3{
    display: flex;
    justify-content: center;
}

tr,th,td{
    background-color: rgb(89, 94, 99);
    height: 80px;
    width: 150px;
    text-align: center;
    margin: 0;
    padding: 0;
}

input{
    background-color: rgb(89, 94, 99);
    height: 50px; 
    width: 150px;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
  }

li{
    display: inline;
}

.update{
    display: flex;
    justify-content: center; 
}

/* Nieuwe melding */

.melding{
    display: flex;
    justify-content: center;
}

.btn{
    width: 150px;
}


