* {
  font-family: serif;
}

p {
  font-size: 18px;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 900px;
  margin: 160px auto;
  padding: 0 30px;
  margin-bottom: 190px;
}
.intro-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.me img {
  max-width: 100%;
  height: auto;
}

.name img {
  display: block;
  height: 70px;
  margin: 0 auto;
  
}

.project-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  min-width: 290px;
}

.project-content {
  display: flex;
  flex: 1 1 280px;
  flex-direction: column;
  background-color:antiquewhite;
  align-items: center;
  justify-content: space-between;
  max-width: 290px;
  margin-bottom: 18px;
}

.app-page img {
  display: block;
  width: 100%;
  height: auto;
}

.project-text {
  text-align: center;
  padding: 10px;
}

.view-project-btn {
  background-color: rgb(54, 32, 32);
  border-radius: 20px;
  padding: 10px 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: white;
  margin-bottom: 12px;
  cursor: pointer;
}