@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

body {
  font-family: 'Quicksand', sans-serif;
}

header {
  background-color: #f2f4f6;
  border-bottom: 2px solid purple;
  margin-bottom: 10px;
  padding: 10px;
  font-size: 1.4em;
  border-radius: 4px 4px 0px 0px;
}


header span {
  font-size: 10px;
  padding-left: 2px;
  color: purple;
}

.title {
  text-align: center;
  font-size: 20px;
}

.college-list {
  list-style-type: none;
  padding: 10px;
  padding-top: 0px;
}

.college-list li {
  background-color: #f2f4f6;
  padding: 10px;
  vertical-align: middle;
  margin-bottom: 5px;
}

.college-list a {
  text-decoration: none;
  color: black;
}

.college-list li:hover {
  background-color: lightgreen;
}

.college-list li:before {
  content: '';
  display: inline-block;
  height: 20px;
  width: 20px;
  background-image: url('files/college.png');
  background-size: contain;
  background-repeat: no-repeat;
  padding-left: 5px;
  vertical-align: middle;
}

.notinthelist {
  background-color: purple;
  text-align: center;
  padding: 5px;
  color: #ffffff;
  margin-bottom: 5px;
  border-radius: 2px;
}

.notinthelist a {
  color: white;
}

.footer {
  text-align: center;
  background-color: #f2f4f6;
  padding: 10px;
  border-radius: 0px 0px 4px 4px;
}

.footer-list {
  list-style-type: none;
  padding: 0px;
  font-size: 0;
}

.footer-list li {
  display: inline-block;
  background-color: pink;
  padding: 4px;
  border-radius: 2px;
  font-size: 1rem;
  margin: 2px;
}

/* Table */

table, td, th {  
  border: 1px solid #ddd;
  text-align: left;
  margin-top: 10px;
  margin-bottom: 10px;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  padding: 15px;
}
