body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-image: url('https://wallpapershome.com/images/pages/pic_h/26018.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.image-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.image-container img {
  width: 290px;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.image-container img:hover {
  transform: scale(1.05);
}


header {
  background-color: pink;
  padding: 10px;
  text-align: center;
}

nav button {
  margin: 5px;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  background-color: white;
  color: pink;
  cursor: pointer;
  border-radius: 5px;
}

.page {
  display: none;
  padding: 20px;
  text-align: center;
}

.page.active {
  display: block;
}

.about-container {
  margin-top: 20px;
}

textarea {
  width: 80%;
  height: 150px;
  font-size: 16px;
  padding: 10px;
  border-radius: 10px;
  border: 2px solid;
  resize: vertical;
}

.projects-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.project {
  background-color: #f6d5f7;
  border-radius: 10px;
  width: 300px;
  padding: 15px;
  margin: 10px;
  text-align: left;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.project img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.project-info h3 {
  margin-top: 10px;
}

.project-info a {
  display: inline-block;
  margin-top: 10px;
  color: #E78F8E;
  text-decoration: none;
  font-weight: bold;
}
