body {
  margin: 0px;
  font-family:
    "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans",
    Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.flex {
  display: flex;
}

.flexrow {
  flex-direction: row;
}

.flexcenter {
  justify-content: center;
}

.flexaround {
  justify-content: space-around;
}

.center {
  text-align: center;
}

.flexcol {
  flex-direction: column;
  justify-content: start;
}

.font-50 {
  font-size: 50px;
}

.disabled {
  pointer-events: none;
  color: grey;
  text-decoration: none;
  font-style: italic;
}

.header {
  background-color: darkcyan;
  padding: 10px;
  text-align: center;
  font-size: 25px;
  border-top: 5px solid black;
  border-bottom: 5px solid black;
}

.titleElement {
  margin: 0px;
}

.mainarea {
  margin: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.thumbnail {
  width: 100px;
}

.signups {
  border: 5px solid black;
  border-radius: 10px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 5px;
  background-color: khaki;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.signups a {
  text-decoration: underline;
  color: black;
  font-style: italic;
}

.weeks {
  border: 5px solid black;
  border-radius: 10px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 5px;
  background-color: khaki;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.teams {
  border: 5px solid black;
  border-radius: 10px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 5px;
}

table {
  border: 2px solid;
  border-collapse: collapse;
  padding: 5px;
}

th {
  border: 2px solid;
  border-collapse: collapse;
  padding: 5px;
  background-color: lightgray;
  font-size: 30px;
}

td {
  border: 2px solid;
  border-collapse: collapse;
  padding: 5px auto;
  font-size: 25px;
}

.mission {
  background-color: lightsteelblue;
  border: solid 5px navy;
  border-radius: 10px;
  width: fit-content;
  margin: 10px;
  padding: 5px;
  text-align: center;
}

.missionlink {
  text-decoration: none;
  font-style: italic;
  color: snow;
}

.tablename {
  text-decoration: underline;
  text-align: center;
  font-size: 34px;
}

.directorycol {
  margin: 5px;
}

.quicklinks {
  background-color: darkcyan;
  border-bottom: 5px solid;
  font-size: 20px;
  text-align: center;
}

.quicklinks p {
  padding: 0px 20px;
}

.quicklinks p a {
  color: white;
}
.directorycol ul {
  padding: 2px;
  margin: 20px;
}

.directorycol li {
  font-size: 28px;
  text-align: center;

  list-style: none;
}

.directorycol li a {
  font-style: italic;
  color: white;
}

.footer {
  width: 100%;
  background-color: black;
  color: white;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
