body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: hotpink;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header img {
  border-radius: 50%;
  margin-top: 10px;
  width: 100px;
  height: 100px;
  object-fit: cover;
}

h1, h2, h3, h4, h5 {
  color: #444;
  margin-top: 0;
}

main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}

section {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.skills ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style-type: none;
}

.skills li {
  background: #007BFF;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
}

.project {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: blanchedalmond;
}

.project img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 5px;
  background-color: blue;
}

.contact-form {
  background-color: dodgerblue;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  max-width: 500px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form h2 {
  text-align: center;
  color: white;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 5px;
  color: white;
}

.form-group input,
.form-group textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-group textarea {
  resize: vertical;
}

.form-group button {
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
}

.form-group button:hover {
  background-color: #0056b3;
}

@media (max-width: 600px) {
  main {
    grid-template-columns: 1fr;
  }
}
