*,
*:before,
*:after {
  box-sizing: border-box;
}

a {
  color: #f1f3f4;
  text-decoration: none;
}

html,
body {
  text-align: left;
  margin: 0 auto;
  font-family: "Sen", sans-serif;
  background: #141414;
  color: #f1f3f4;
  height: 100%;
}

html body {
  margin: 0 auto;
}

html body .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 45px;
  width: 100%;
  height: 100%;
  padding: 0 175px;
}

html body .container img {
  height: 35vh;
  width: 35vh;
  border-radius: 200px;
  border: 2px solid white;
}

html body .container .platforms {
  font-size: 0.9rem;
  text-align: left;
  display: flex;
  flex-direction: row;
  gap: 5px;
}

html body .container .platforms a,
html body .container .platforms p {
  margin: 0;
  padding: 0;
}

html body .container .platforms a:after {
  content: "|";
  padding: 0 2px 0 6px;
}

html body .project {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0 125px;
}

.projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.projects:last-child {
  margin-bottom: 35px;
}

.projects a .img {
  width: 100%;
  height: 20vw;
  background-size: cover;
  background-position: center center;
}

.bold {
  font-weight: 600;
}

/* Responsive */
@media only screen and (max-width: 1024px) {
  html body .container {
    min-height: unset;
    margin: 0;
    flex-direction: column;
    padding: 0 35px;
  }

  html body .project {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 0 35px;
    
  }

  .projects {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .projects a .img {
    height: 35vw;
  }
}
