.profile-card {
  flex: 1;
  background-color: #00bcd4;
  color: white;
  padding: 40px 20px;
  text-align: center;
  position: relative;
}

.profile-img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid white;
  margin-bottom: 20px;
}

.profile-card h2 {
  font-size: 18px;
  font-weight: 300;
  margin: 10px 0;
}

.profile-card h2 span {
  font-weight: bold;
  font-size: 24px;
}

.profile-card p {
  font-size: 14px;
  margin: 10px 0 20px;
}

.social-icons a {
  color: white;
  margin: 0 8px;
  text-decoration: none;
  font-size: 18px;
}

.about-me {
  flex: 2;
  padding: 40px;
}

.about-me h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #111;
}

.about-me p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-me button {
  padding: 10px 20px;
  border: 2px solid #00bcd4;
  background: transparent;
  color: #00bcd4;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.about-me button:hover {
  background-color: #00bcd4;
  color: white;
}

.credit {
  font-size: 12px;
  color: #777;
}

.credit a {
  color: #00bcd4;
  text-decoration: none;
}
.containers {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 40px auto;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}