.btn, .btn-outline {
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.btn {
  background: red;
  color: #fff;
  border: none;
}

.btn-outline {
  border: 2px solid red;
  color: red;
  background: transparent;
}

.hero {
  background: #fef2f4;
  padding: 2rem 0;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  flex: 1;
  padding: 1rem;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-text span {
  color: #e91e63;
}

.hero-buttons {
  margin-top: 1rem;
}

.hero-image {
  flex: 1;
  padding: 1rem;
  text-align: center;
}
.hero-image img{width:100%;}
@media (max-width: 768px) {
.hero-content {
  display: block;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}	
	}
@media (max-width: 480px) {
.hero-content {
  display: block;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}	
	}