* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.3;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  background-color: #000;
}

form {
  line-height: 3.5;
}

#expenseBody {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin-top: 30vh;
}

#expenseBody h1 {
  margin-bottom: 2rem;
}

#expenseBody h6 {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 100;
}

#currencyLabel {
  font-weight: lighter;
}

#costLabel {
  width: 200px;
  margin-left: 1rem;
}

#itemLabel {
  font-weight: lighter;
  padding-left: 0.8rem;
}

#nameInput {
  width: 200px;
  height: 30px;
  margin-left: 1.8rem;
}

#date {
  font-weight: lighter;
}

#dateInput {
  width: 200px;
  margin-left: 1rem;
}

#amount {
  font-weight: lighter;
  padding-left: 1rem;
}

#amountInput {
  width: 200px;
  height: 30px;
  margin-left: 1rem;
}

#submitBtn {
  border: none;
  padding: 1.3rem 2.5rem;
  font-size: 13px;
  background-color: rgb(10, 190, 235);
  color: #fff;
  margin: 2rem 0 2rem 0;
  box-shadow: 0 2px 3px -1px #fff;
}

#submitBtn:hover {
  cursor: pointer;
  background-color: rgb(9, 169, 209);
}

table {
  background-color: #fff;
}

#tableHead {
  background-color: rgb(202, 202, 202);
}

#tableHead th {
  font-weight: 100;
  padding: 0.5rem 0.5rem 0.5rem 0.3rem;
}

#tableHead th:nth-child(2) {
  width: 280px;
}

#tableHead th:nth-child(3) {
  width: 120px;
}

#tableHead th:nth-child(4) {
  width: 100px;
}

tbody td {
  padding: 0.3rem;
  color: black;
}

tbody {
  overflow-y: scroll;
}

.delBtn {
  cursor: pointer;
}

.homeBtn {
  margin-left: 1rem;
  margin-top: 1rem;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  background-color: rgb(10, 190, 235);
  box-shadow: 0 2px 3px -1px #fff;
}

.homeBtn:hover {
  background-color: rgb(9, 169, 209);
}

.homeBtn a {
  text-decoration: none;
  color: #fff;
}
