body{
    background: linear-gradient(135deg, #cae3bf, #fceabb);
    margin:0;
}
h1{
    color:#902857;
    font-size: 4rem;
    display:flex;
    justify-content: center;
    font-family: "Nunito", sans-serif;
    font-weight: 800;  
    margin-top: 0;    
    text-shadow:
  1px 1px 3px rgba(255, 255, 255, 0.7),
  0 0 10px rgba(200, 150, 150, 0.15);
}

.about-me{
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fcf3e86c;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 25px;
    max-width: 700px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: scale(0.95);
    transition: transform 0.5s ease;
    margin-top: 0;
}

.about-me:hover {
  transform: scale(1);
}

.about-me h2{
    font-family: "Nunito", sans-serif;
    margin-top: 0;
    font-size: 2rem;
    color:rgba(119, 9, 9, 0.874);
    font-weight: 800;
    text-shadow:
        1px 1px 3px rgba(255, 255, 255, 0.7),
        0 0 10px rgba(200, 150, 150, 0.15);
}
 
.about-me img{
    height:50%;
    width:50%;
    border-radius: 50%;
    border: 0px solid rgb(0, 0, 0);
    box-shadow: 7px 7px 15px rgb(79, 78, 78);
    display: block;
    margin: 0 auto;
}

.about-me p{
    border-left: 6px solid rgba(119, 9, 9, 0.71);
    border-radius: 6px;
    margin: 20px 0;
    padding: 0 12px;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    line-height: 1.6;
    color: rgba(119, 9, 9, 0.71);
    text-shadow:
  1px 1px 3px rgba(255, 255, 255, 0.7),
  0 0 10px rgba(200, 150, 150, 0.15);

  
}

@media (max-width: 600px) {
  .heading-line h1 {
    font-size: 2.3rem;
  }

  .about-me {
    padding: 1.5rem;
  }

  .about-me p {
    font-size: 1rem;
  }

  .about-me img {
    width: 140px;
    height: 140px;
  }
}

/* 🎉 Animation */
@keyframes pop {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.media-interaction{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.media-interaction h2{
    font-family: "Nunito", sans-serif;
    margin-top: 0;
    font-size: 3rem;
    color: #9B4A4A;
    font-weight: 800;
    text-shadow:
        1px 1px 3px rgba(255, 255, 255, 0.7),
        0 0 10px rgba(200, 150, 150, 0.15);
    margin-bottom: 1;
}

button{
    background-color: #E4A471;
    color: #FFF8F0;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    padding: 1rem 2rem;
    font-size: 1.5rem;
    border: none;
    border-radius: 20px;
    box-shadow: 1px 1px 4px rgba(0,0,0,0.1);
    margin: 0 20px;
    cursor: pointer;
}

button:hover {
  background-color: #D98E60;
}

.vibe-message {
  font-family: "Nunito", sans-serif;
  font-size: 2rem;
  color: #32CD32;
  margin-top: 1rem;
  transition: opacity 0.3s ease;
  min-height: 3rem;
  text-align: center;
  margin-top: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.email-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.email-me {
  padding: 20px 30px;
  background-color: #ef9bae46;
  border: 0px;
  border-radius: 30px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.email-me h2{
    font-family: "Nunito", sans-serif;
    margin-top: 0;
    font-size: 2.5rem;
    color: #d63e62;
    font-weight: 800;
    text-shadow:
        1px 1px 3px rgba(255, 255, 255, 0.7),
        0 0 10px rgba(200, 150, 150, 0.15);
    margin-bottom: 1;
}

.email-me a{
    color: #d63e62;
    text-decoration: none;
    font-size: 1.5rem;
}