
.hero
{
    width: 100%;
    height: 539px;
background: linear-gradient(35deg, rgba(102, 7, 0, 1) 0%, rgba(179, 0, 0, 1) 50%, rgba(255, 0, 0, 1) 100%);position:relative;
display:grid;
grid-template-columns: repeat(2,1fr);
align-items: center;
gap:2rem;
padding:0 19%;
}
img{
    width:400px;
    height:400px;
}

h1
{
    font-size: 90px;
    line-height: 1;
    color:white;
    margin:0 0 25px;
      font-family: "Mystery Quest", system-ui;
  font-weight: 400;
  font-style: normal;

}

p{
    color:white;
    font-size: 15px;
    margin-bottom: 40px;
}
.ctaa
{
    color: white;
    background:#c92424;
    border: 1px solid transparent;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
      .ctaa:hover {
        background: #570e0e;
        transform: translateX(10px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      }
