body {
  display: flex;
  text-align: center;
  font-size: 16px;
  color: rgb(207, 207, 207);
  background-color: #191919;
  font-family:
    Ioveska,
    Menlo,
    Fira Code,
    Consolas,
    Monaco,
    Liberation Mono,
    Lucida Console,
    monospace;
  flex-direction: column;
  display: flex;
}

h1 {
  margin-left: auto;
  margin-right: auto;
  font-size: 96px;
  color: #1eff00;
  margin-top: 24px;
  margin-bottom: 24px;
}

h2 {
  margin-left: auto;
  margin-right: auto;
  font-size: 48px;
  margin-top: 16px;
  margin-bottom: 16px;
}

#projectsList {
  display: flex;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  width: 85%;
  flex-wrap: wrap;
}

.card {
  display: flex;
  flex-direction: column;
  background-color: #2a2a2a;
  border-radius: 24px;
  margin: 24px;
  padding: 24px;
  border: 2px solid #1eff00;
  align-items: center;
  height: 150px;
  transition:
    transform 0.5s,
    box-shadow 0.5s;
  cursor: pointer;
  width: 256px;
}

/* @media screen and (max-width: 410px) { */
/*   #projectsList { */
/*     flex-direction: column; */
/*   } */
/* } */
/**/
/* @media screen and (min-width: 411px) { */
/*   #projectsList { */
/*     flex-direction: row; */
/*   } */
/* } */

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 24px #1eff00;
  transition:
    transform 0.5s,
    box-shadow 0.5s;
}

.cardTitle {
  font-size: 48px;
  font-weight: bold;
}

.cardDescription {
  margin-top: 8px;
}

.cardImage {
  width: 256px;
  height: auto;
  border-radius: 8px;
}

a {
  color: rgb(207, 207, 207);
  text-decoration: none;
  cursor: pointer;
}

.github {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}
