body {
  margin: 0;
  padding: ;
  font-family: "Comic Sans MS", cursive, sans-serif;
  background: #ffe6f0;
  color: #4a148c;
}

/* GRID for the main layout */
.container {
  display: grid;
  grid-template-areas:
    "about"
    "bottom";
  grid-template-rows: auto auto;
  gap: 20px;
  padding: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Top Section: About Me */
.about {
  grid-area: about;
  background: linear-gradient(135deg, #d291bc, #f8bbd0);
  display: flex; 
  align-items: center;
  gap: 20px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Circle for profile image */
.profile {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 3px solid #ff80ab;
  overflow: hidden; 
  flex-shrink: 0;
  background: #fff;
}

.profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Bottom Section: Hobbies + Aspirations */
.bottom {
  grid-area: bottom;
  display: flex; 
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}

.hobbies,
.aspirations {
  flex: 1; 
  background: linear-gradient(135deg, #f48fb1, #ce93d8);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  display: flex;          
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Headings */
h2 {
  margin-top: 0;
  color:#880e4f;
}

/* Responsiveness */
@media (max-width: 768px) {
  .about{
   grid-template-columns: 1fr; 
    text-align: center;
  }

  .profile img {
     margin: 0 auto 20px;
  }
  .bottom {
    grid-template-columns: 1fr;
  }
}

