/* @import url("https://fonts.googleapis.com/css?family=Noto+Sans+Mono"); */
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100;300;400;700&display=swap");

body {
  /* font-family: "Noto Sans Mono", monospace; */
  font-family: 'Roboto Mono', monospace;
  font-size: 0.9rem;
  background-color: rgb(247,247,245);
}

.main {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* max-height: 100vh; */
}

.main h4 {
  text-decoration: underline;
}

.profile-info img {
  display: block;
  margin: 1rem auto;
  object-fit: cover;
  width: 170px;
  height: 170px;
  background-color: transparent;
}

.profile-info {
  text-align: center;
  padding: 2rem 0 0 0;
  background-color: rgb(202, 200, 197);
    padding-bottom: 2rem;
}

.profile {
  text-align: center;
  margin: auto;
  font-size: inherit;
}

.profile-name{
  font-weight: 300;
}

.project-container {
  display: flex;
  flex-wrap: wrap;
  padding: 0.3rem;
  justify-content: center;
  margin: auto; 
}

.project-name {
  font-size: 300;
  margin-bottom: 1rem;
}

.project-item {
  overflow: hidden;
  position: relative;
  margin: 0.5rem 0.5rem 0.5rem 0.5rem;
  padding: 1.3rem 0 1.3rem 0;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 400px;
  /* max-width: 400px; */
  max-height: 400px;
  box-shadow: 5px 5px 2.5px 3px rgba(154, 160, 185, 0.05),
    0 0 1px rgba(0, 0, 0, 0.1);
}

.project-name {
  margin-top: 1rem;
}

.project-item ul {
  display: inline-block;
  text-align: center;
  font-weight: 100;
  list-style: none;
  padding-left: 0;
  margin: 0; 
}

.project-item ul li {
  display: inline-block;
  max-width: 350px;
  text-align: center;
  background-color: antiquewhite;
  padding: 0.3rem;
  border-radius: 0.3rem;
  margin-top: 0.1rem;
  margin-left: 0;
  margin-bottom: 0.1rem;
}

.project-item ul li a {
  color: black;
  text-decoration: underline;
}

.project-img {
  display: flex;
  overflow: hidden;
  justify-content: center;
  width: 350px;
  height: 280px;
  flex-wrap: wrap;
  padding: 0;
  margin: auto; 
  align-items: center;
}

.project-img img {
  display: block;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  /* border-radius: 10px; */
  object-fit: cover;
  box-shadow: 5px 5px 2.5px 3px rgba(154, 160, 185, 0.05),
    0 0 1px rgba(0, 0, 0, 0.1);
}

.social-container {
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.social-container a {
  text-decoration: none;
}

.social-container img {
  text-align: center;
  width: 40px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
    .project-item {
      display: flex;
      flex-wrap: wrap;
      margin: 0.5rem 0.5rem 0.5rem 0.5rem;
      padding: 0.5rem 0 0.5rem 0;
      justify-content: center;
      box-shadow: 5px 5px 2.5px 3px rgba(154, 160, 185, 0.05),
    0 0 1px rgba(0, 0, 0, 0.1);
    }
    .project-img {
      margin: 0;
      padding: 0;
      max-width: 500px;
      max-height: 500px;
    }
  
    .project-img img {
      display: block;
      overflow: hidden;
      margin: 0;
      padding: 0;
      box-shadow: 5px 5px 2.5px 3px rgba(154, 160, 185, 0.05),
        0 0 1px rgba(0, 0, 0, 0.1);
    }
  }