* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
   font-family: 'Prompt', sans-serif;
}

 

.banner {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.banner-content {
   padding: 50px 30px;
   background: linear-gradient(15deg, #241b10d3, #221c15bd,#251604cc); 
   border-radius: 12px;
   margin-left: 00px;
}

 

.banner-content h1 {
  margin-bottom: 10px;
  color: #ffffff;
  padding: 2%;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

.banner-content p {
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 300;
  font-family: 'Prompt', sans-serif;
}

.banner-content a {
  display: inline-block;
  padding: 17px 40px 17px 40px;
  width: 250px;
  background: linear-gradient(135deg, #ffffffed, #f5e9d9, #f1efebec); 
  color: #1e1b13;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  font-weight: 300;
    font-family: 'Prompt', sans-serif;
      font-size: 1.4rem;
}

.banner-content a:hover {
  background: linear-gradient(135deg, #ffffff, #ffffff, #ffffff); 
  font-weight: 500;
  color: #1e1b13;
  font-family: 'Prompt', sans-serif;

}

@media (max-width: 768px) {
  .banner {
    height: 350px;
    padding: 20px;
   }

  .banner-content h1 {
    font-size: 1.6rem;
  }

  .banner-content p {
    font-size: 1rem;
  }
}