
.about{
  width: 100%;
  padding: 100px 0;
  background-color: rgb(15, 15, 15);
}
.about img{
  height: auto;
  width: 430px;
  border-radius: 20px;
}
.about img:hover{
  transform: scale(1.065);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.about-text{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 550px;
  width: 100%;
  border: solid 2px rgb(245, 245, 245);
  margin-left: 10px;
  padding: 20px;
  border-radius: 20px;
}
.about-text:hover{
  transform: scale(1.065);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.main{
  width: 1130px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}
.about-text h2{
  font-size: 75px;
  text-transform: capitalize;
  margin-bottom: 20px;
  background-image: linear-gradient(to top, rgb(255, 200, 200) 0%,
  #ff84ab 20%, #ff5b8f 50%,
  #ff2067 70%, #f9004d 100%);
  -Webkit-background-clip: text;
  -moz-background-clip:text ;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  background-size: 100%;
}
.about-text h5{
  color: white;
  letter-spacing: 2px;
  font-size: 22px;
  margin-bottom: 25px;
  text-transform: capitalize;
}
.about-text p{
  color: #fcfc;
  letter-spacing: 1px;
  line-height: 28px;
  font-size: 18px;
  margin-bottom: 45px;
  text-align: center;
}
button{
  background-color: #f9004d;
  color: white;
  text-decoration: none;
  border: 2px solid transparent;
  font-weight: bold;
  padding: 13px 30px ;
  border-radius: 30px;
}
button:hover{
  transition: all 0.3s ease;
  background-color: transparent;
  cursor: pointer;
  border: 2px solid #f9004d;
}