html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  padding: 30px;
  /* background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
  box-sizing: border-box;
}

/* Background color for the top navigation bar */
.topnav {
  background-color: #333;
  overflow: hidden;
}

/* Style the links [elements] in the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* add a color to the active/current link */
.topnav a.active {
  background-color: #4caf50;
  color: white;
}

#title {
  text-align: center;
}

h2 {
  padding-left: 10px;
}

#projects-table {
  margin: 30px;
  border-collapse: collapse;
  border: 2px solid rgb(200, 200, 200);
  letter-spacing: 1px;
  font-family: sans-serif;
  font-size: 0.8rem;
}

#projects-table .table-header {
  border: 1px solid red;
  text-align: left;
}

td,
th {
  border: 1px solid rgb(190, 190, 190);
  padding: 10px;
}

td {
  text-align: left;
}

tr:nth-child(even) {
  background-color: #eee;
}

th[scope="col"] {
  background-color: #696969;
  color: #fff;
}

.medium-btn {
  width: 70px;
  height: 30px;
}

.update-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
