* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    box-sizing: border-box;
}


h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 90px;
  padding-top: 20px;
  color: white;
  font-size: 5.5rem;
}

h1 span {
  padding-left: 30px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #fff;
}

.about-section img {
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 50%;
  height: auto;
}

.about-container {
    width: 70%;
  text-align: justify;
  color: white;
  padding: 20px;
  margin: 0 auto;
}

.about-container p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.5;
}

.about-msg {
  width: 100%; 
  text-align: center; 
  margin-bottom: 60px;
}

.about-msg i {
  color: white;
  font-size: 68px;
  display: inline-block; 
}

.about-msg h2 {
  font-size: 3rem; 
  color: #fff;
  text-transform: uppercase;
}

.about-msg h2 span {
  font-size: 4rem; 
  font-weight: bold; 
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #fff;
}




@media (min-width: 1200px) {
  h1 {
    font-size: 5.5rem;
    margin-block: 70px;
    padding-top: 20px;
  }
}


@media (min-width: 768px) and (max-width: 1199px) {
  h1 {
    font-size: 4.5rem;
    margin-block: 60px;
    padding-top: 30px;
  }
}


@media (max-width: 767px) {
  h1 {
    font-size: 3.5rem;
    margin-block: 50px;
    padding-top: 25px;
  }
  h1 span {
    padding-left: 15px;
  }
}


@media (max-width: 479px) {
  h1 {
    font-size: 2.5rem;
    margin-block: 30px;
    padding-top: 40px;
  }
  h1 span {
    padding-left: 10px;
  }
}