#profile-start {
  display: flex;
  flex-direction: column; /* stack image + name */
  justify-content: center;
  align-items: center;
  min-height: 200px; /* safer than fixed height */
  gap: 15px;
}

#profile-image {
  width: 180px; /* slightly balanced */
  height: 180px;
  border-radius: 50%;
  border: 3px solid black;
  object-fit: cover; 
}

#profile-start h1 {
  margin: 0; /* remove default spacing */
}

.intro-card {
  background-color: #f0f0f0;
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  width: 100%;
  margin: 20px auto;

  font-family: sans-serif;
  font-size: 20px;
  text-align: center;

  box-sizing: border-box;
  font-weight: 12;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
#hey{
  font-family: cursive;
  font-size: 20px;
  justify-content: center;
  text-align: center;
  text-shadow: 2px 2px 4px grey;
}

#blogs {
  font-family: cursive;
  font-size: 15px;
  text-shadow: 2px 2px 4px grey;

  background-color: black;
  color: white;
  padding: 10px;
  border-radius: 5px;
  width: 145px;

  text-align: center;
  text-decoration: none;
  cursor: pointer;

  position: fixed;
  bottom: 20px;
  right: 20px;
}

#blogs:hover {
  background-color: #333;
}

footer {
  background-color: #f0f0f0;
  padding: 15px;
  text-align: center;
  font-family: sans-serif;
  font-size: 14px;
  color: #555;
}