@import "./colors.css";
@import "./general.css";
@import "./header.css";
@import "./footer.css";
#content {
  width: var(--content-width);
  /* padding: 0 3em; */
  /* margin: 0 auto 5em; */
  background-color: var(--bg0_hard);
  color: var(--fg1);
  margin: 0 auto;
  margin-bottom: 5rem;
}
#content section {
  padding: 0 1rem;
}
#content section h1 {
  padding-top: 3rem;
  font-size: 2.3rem;
  text-align: center;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--fg1);
  margin-bottom: 3.5rem;
}
#content section .text {
  font-size: 1.2rem;
}
#content section .text.bullet {
  text-align: center;
  font-size: 1.35rem;
}
#content section .text.bullet a {
  padding: 1rem 2rem;
}
#content section.project {
  margin: 2rem 0;
  width: 90%;
}
#content section.project a {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 1rem 1rem 1rem 2rem;
}
#content section.project a:hover .desc .title {
  color: var(--purple_dark);
}
#content section.project a img {
  width: 20%;
  border: 1px solid transparent;
  border-radius: 5%;
}
#content section.project a .desc {
  margin: 0 2rem;
  width: 70%;
}
#content section.project a .desc p {
  margin: 0;
}
#content section.project a .desc .title {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  display: inline-block;
}
#content section.project a .desc .tag {
  margin-left: 2rem;
}

@media screen and (max-width: 600px) {
  #content section.project a {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #content section.project a img {
    width: 90%;
  }
  #content section.project a .desc {
    margin: 0.5rem 2rem;
    text-align: center;
  }
  #content section.project a .desc .title {
    margin: 0;
  }
}
