@import url('https://fonts.googleapis.com/css2?family=Itim&family=Ubuntu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Wrapper */
#wrapper {
  font-family: 'Varela Round', sans-serif;
  width: 100%;
  min-height: 100vh;
  background: #f9fafc;
}

/* Container */
.container {
  width: 90%;
  margin: 0 auto;
}

/* Heading */
.heading {
  margin-top: 2rem;
  text-align: center;
}

.mainHeading {
  font-family: 'Ubuntu', sans-serif;
  font-size: 36px;
  display: inline-block;
  letter-spacing: 3px;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  position: relative;
}

/* Underline */
.mainHeading::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;

  width: 70%;              /* control line length */
  height: 4px;

  background: linear-gradient(to right, #bb9090, #5a8dee);
  border-radius: 10px;
}

/* About Section */
.aboutsec {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(to right, rgb(183, 238, 235), rgba(60, 181, 189, 0.9));
  border-radius: 12px;
}

/* Paragraph */
.about-cnt {
  font-size: 18px;
  margin-bottom: 2rem;
  line-height: 1.7;
  color: #333;
}

/* Section blocks */
.about-me {
  margin-bottom: 2rem;
}

/* Sub-headings */
.about-me h2 {
  font-size: 22px;
  margin-bottom: 0.8rem;
  color: #2c155b;
}

/* Lists */
.list {
  padding-left: 1.5rem;
}

.about-me li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Highlight */
.important {
  font-weight: 600;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .mainHeading {
    font-size: 28px;
  }

  .aboutsec {
    padding: 1.5rem;
  }

  .about-cnt {
    font-size: 16px;
  }

  .about-me h2 {
    font-size: 20px;
  }
}