body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
      Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: #ffffff;
  margin: 0;
  padding: 2rem;
}

.container {
  max-width: 900px;
  margin: auto;
}

h1 {
  text-align: center;
  color: #333;
  margin-bottom: 2rem;
}

#search {
  width: 100%;
  padding: 0.7rem;
  font-size: 1rem;
  margin-bottom: 2rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.project {
  display: flex;
  align-items: flex-start;
  background: white;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

.project img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 1.5rem;
}

.project-info h2 {
  margin-top: 0;
}

.project-info p {
  margin-bottom: 0;
  color: #444;
}

@media (max-width: 600px) {
  .project {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .project img {
    margin: 0 0 1rem 0;
    width: 80%;
    height: auto;
  }

  .project-info {
    width: 100%;
  }

  #search {
    font-size: 1.1rem;
  }

  h1 {
    font-size: 1.6rem;
  }

  .project-info h2 {
    font-size: 1.3rem;
  }

  .project-info p {
    font-size: 1rem;
  }
}

