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;
  background-color: grey
}

.flex {
  display: flex;
}

.flexrow {
  flex-direction: row;
}

.flexcenter {
  justify-content: center;
}

.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: brown;
  padding: 10px;
  text-align: center;
  font-size: 25px;
  border-top: 5px solid black;
  border-bottom: 5px solid black;
}

.titleElement {
  margin: 0px;
}

.mainarea {
  margin: 10px;
}

.aboutme {
  width: 500px;
  border: 5px solid;
  border-color: black;
  border-radius: 10px;
  padding-left: 10px;
  padding-right: 10px;
  background-color: khaki;
  margin-left: 20px;
  margin-right: 20px;
}

.aboutme h1 {
  text-align: center;
  text-decoration: underline;
}

.aboutme ul {
  padding: 2px;
  margin: 20px;
}

.aboutme li {
  font-size: 18px;
  text-align: center;

  list-style: none;
}

.aboutme li a {
  font-style: italic;
  color: black;
}

.moreinfo {
  margin-top: 15px;
  padding-top: 10px;
  border-top: 5px solid;
  border-color: black;
}

.projectscol {
  margin: 5px;
}

.project {
  border: 5px solid;
  border-radius: 10px;
  padding-left: 10px;
  padding-right: 10px;
  background-color: khaki;
}

.projecttitle {
  text-align: center;
  text-decoration: underline;
}

.projectthumbnail {
  width: 250px;
  height: auto;
  border: 3px solid black;
  border-radius: 6px;
  margin: 5px;
}

.directorycol {
  margin: 5px;
  padding: 5px auto;
}

.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;
}


.evilform {
  font-family: 'Courier New', Courier, monospace;
  font-size: 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: khaki;
  border: 5px solid black;
  border-radius: 10px;
  padding: 10px;
}

.evilinput {
  font-size: 5vw;
  background-color: lightgrey;
  border: 5px solid black;
  border-radius: 25px;
  padding: 0.5vw;
}

@keyframes success {
  0% { background-color: lightgrey; }
  100% { background-color: rgba(0,255,0,0.4); }
}

@keyframes failure {
  0% { background-color: lightgrey; }
  75% { background-color: rgba(255,0,0,0.4); }
  100% { background-color: lightgrey; }
}
