body {
  margin: 0;
  padding-top: 40px;
  background-color: #ffffff;

  font-family: Inter, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #3f6ab9;

  text-align: center;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.projectlogo {
  width: 23%;
  max-width: 520px;
  height: auto;
  
  display: block;
  margin: 0 auto 30px auto;
}

/* TABLE */
table.mainTable {
  width: 50%;
  margin: 0 auto;
  border-collapse: collapse;

  border-radius: 6px;
}

/* HEADER (description block) */
.mainTable thead th {
  padding: 20px 20px 30px;
  border-bottom: 1px solid #eef2f7;
}

.description {
  font-weight: 600;
  line-height: 1.35;
  color: #568ece;
  margin: 10px 0;
}

/* BODY ROWS */
.mainTable tbody tr {
  height: 70px;
  transition: background-color 0.2s ease;

  border-bottom: 1px solid #eef2f7;
}

.mainTable tbody tr:hover {
  background-color: #f3f6fa;
}

/* CELLS */
.mainTable td {
  padding: 12px 16px;
  vertical-align: middle;
}

.mainTable tbody tr:hover .leftCell a {
  text-decoration: underline;
}

.mainTable tbody tr:last-child {
  border-bottom: none;
}

/* LEFT COLUMN (links) */
.leftCell {
  width: 30%;
  font-weight: 650;
  text-align: left;
}

.leftCell a {
  color: #0b57e4;
  text-decoration: none;
}

.leftCell a:hover {
  text-decoration: underline;
  color: #0842b3;
}

/* RIGHT COLUMN (descriptions) */
.rightCell {
  font-size: 14px;
  width: 70%;
  text-align: right;
  color: #9fa9bd;
}

/* FOOTER */
.footer {
  margin-top: 100px;
  font-size: 12px;
  color: #8a9bb8;
}
