html {
  font-size: .9rem;
  font-family: 'Castoro Titling', cursive;
}

/* Header */

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 50px;
  position: relative;
}

h1 {
  font-size: 1.75em;
  font-weight: 400;
  letter-spacing: 10px;
}

h1 a {
  color: black;
  text-decoration: none;
}

#nav-links a {
  font-size: 1rem;
  margin-right: 20px;
  text-decoration: none;
  color: black;
}

#nav-links a.active {
  font-style: italic;
}


/* Projects Table */

body {
  text-align: center;
}

table {
  width: 70%;
  margin: 50px auto 0;
  border-collapse: collapse;
  color: grey;
}

th, td {
  font-size: 1rem;
  padding-top: 1rem;
  text-align: left;
  color: #000000;
  
}

th:not(:first-child) {
  width: 20%;
}


th:hover {
  color: #a3a3a3;
}

#project-list tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

#project-list tbody tr:hover {
  background-color: #dddddd;
}




 /* Mobile Compatible? */

 @media only screen and (max-width: 767px) {
  .main-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .content-item {
    padding: 1rem;
  }
}
