:root {
  --darkslategray-color: #1d1d1f;
  --lightgray-color: #f2f2f2;
  --deepskyblue-color: #2ca8ff;
  --white-color: #fff;
  --gainsboro-color: #ccc;
}
* {
  box-sizing: border-box;
}
body {
  font-family: Lato, sans-serif;
  line-height: 150%;
  color: var(--darkslategray-color);
  font-size: 18px;
  padding: 0px;
  padding-bottom: 50px;
  margin: 0px;
  overflow-x: hidden;
  background-color: var(--lightgray-color);
}
main {
  display: flex;
  align-items: center;
  flex-direction: column;
}
#about {
  text-align: center;
  padding-bottom: 50px;
}
#about #link-to-tc {
  font-size: 18px;
  color: var(--deepskyblue-color);
  margin-top: 0px;
}
#about h2 {
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--deepskyblue-color);
  display: block;
  margin: 0px 0px 10px 0px;
}
#about img {
  height: 90px;
  border-radius: 50%;
  margin: 50px auto 20px auto;
  display: block;
}
h1 {
  font-weight: 900;
  margin: 0px 0px 25px 0px;
  font-size: 42px;
  line-height: 100%;
}
#about p {
  line-height: 150%;
  margin: 0px 0px 25px 0px;
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  padding: 0px 15px;
  max-width: 500px;
}
#about a {
  color: var(--darkslategray-color);
  font-size: 24px;
  display: inline-block;
  width: auto;
  margin: 25px 5px 0px 5px;
  text-decoration: none;
}
#projects {
  text-align: center;
  width: 100%;
  padding-bottom: 50px;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#projects h2 {
  width: 100%;
}
.card {
  background-color: var(--white-color);
  border-radius: 5px; /*.2em;*/
  border: 1px solid var(--gainsboro-color);
  padding: 0px;
  color: var(--darkslategray-color);
  max-width: 500px;
  min-width: 300px;
  margin: 10px;
  text-align: left;
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.1);
}
.card a {
  color: var(--darkslategray-color);
  text-decoration: none;
}
.card img {
  padding: 0px;
  margin: 0px;
  max-width: 100%;
  max-height: 300px;
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.card-content {
  padding: 15px 15px 15px 15px;
  font-size: 14px;
}
h3 {
  font-size: 16px;
  font-weight: 700;
}
@media only screen and (min-width: 1281px) {
  main {
    justify-content: space-around;
  }
}
@media only screen and (min-width: 600px) {
  .card img {
    min-width: 499px; /* 500x - 1px border */
    height: 300px;
  }
}
