#main {
  margin: 0 1rem;
}

#content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: baseline;
  gap: 2.5rem;
}

#content article {
  position: relative;
  background-color: #303030;
  width: 100%;
  max-width: 40rem;
  min-width: 30rem;
  height: 40rem;
  border-radius: 10px;
  transition: 0.2s;
  /* box-shadow: 0 4px 8px 0 rgba(32, 3, 160, 0.486), 0 6px 20px 0 rgba(134, 18, 18, 0.349); */
  box-shadow:
    inset 60px 0 120px rgba(255, 0, 76, 0.1),
    inset -60px 0 120px rgba(0, 255, 255, 0.1);
}

#content article:hover {
  /* transform: scale(1.05); */
  transform: scale(1.02);
}

.project ul {
  width: inherit;
  max-width: inherit;
  min-width: inherit;
  list-style: none;
  position: absolute;
}

.project ul .lang {
  background-color: #909090;
  border-radius: 3rem;
  padding: 0.2rem 0.8rem;
  margin: 0.5rem;
  float: right;
  line-height: 2rem;
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
}

.project ul .lang .colorDot {
  height: 1.3rem;
  width: 1.3rem;
  border-radius: 50%;
  float: left;
  position: relative;
  top: 0.3rem;
}

.project ul .lang p {
  color: #000000;
  float: right;
  padding-left: 0.5rem;
}

.project img {
  display: inline-block;
  object-fit: cover;
  width: 100%;
  height: 45%;
  border-radius: 10px 10px 0px 0px;
}

.project .content {
  max-width: inherit;
  padding: 1rem;
}

.project .content h4 {
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 3rem;
  line-height: 3rem;
  text-align: center;
}

.project .content p {
  padding: 1.5rem 0;
  color: #ffffff;
  font-size: 2rem;
  text-align: left;
  min-width: inherit;
}

.project a {
  text-decoration: none;
  color: #0c6fbe;
  font-size: 2rem;
  font-weight: bold;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin-bottom: 1rem;
}

.lang #Rust {
  background-color: #b7410e;
}
.lang #PHP {
  background-color: #4f5d95;
}
.lang #Java {
  background-color: #b07219;
}
.lang #JavaScript {
  background-color: #f1e05a;
}
.lang #HTML {
  background-color: #e6722f;
}
.lang #CSS,
.lang #SCSS {
  background-color: #563d7c;
}
.lang #Python {
  background-color: #3572a5;
}
.lang #Shell {
  background-color: #89e051;
}
.lang #C\# {
  background-color: #178600;
}
.lang #C {
  background-color: #555555;
}
.lang #Android {
  background-color: #a4c639;
}
.lang #WPF {
  background-color: #2b20a1;
}
