.head{
    background-image: linear-gradient(120deg,rgba(0,0,0,0.99)0%, rgba(0,0,0,0.75)40%,rgba(0,0,0,0.20)75%,rgba(0,0,0,0)100%), url(heroimage.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
    height: 700px;
}
.head-text{
    
    padding-top: 150px;
    margin-left: 200px;
}
.fade{
    transform: translateY(25px);
    opacity: 0;

}
@keyframes fadeup{
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
.fade.animate{
    animation: fadeup 0.8s cubic-bezier(0.25,1,0.5,1) forwards;
}
.head h2{
    font-family: 'Dancing Script', cursive;
    font-weight: 400;
    font-optical-sizing: auto;
    font-style: normal;
    color: #ff6600;
    margin-left:-20px ;
    font-size:35px;
}
.head h1{
    color: white;
    font-weight: 700;
 font-family: 'Playfair Display', serif;
 letter-spacing: 1px;
   margin-left: -40px;
   font-size:40px;
   text-decoration: underline #ff6600;
}
.first-p{
    font-size: 40px;
    color: white;
    margin-left: -50px;
    letter-spacing: 1px;
    width: 500px;
    text-align: center;
    margin-top: -10px;
    font-family: cursive;
}
.head button{
    padding: 20px 40px 20px 40px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    border: 3px solid #ff6600;
    border-radius: 10px;
    color: white;
}
.head button:hover,
.head button:focus,
.head button:active{
    transition: 0.3s ease;
    background-color: #e65c00;
  transform: translateY(-2px) !important;
}
.active{
    background-color: #ff6600;
    margin-left: -50px;
}
.trans{
    background-color: transparent;
}
.years{
    color: white;
    margin-left: -50px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Times New Roman', Times, serif;
    width: 400px;
    letter-spacing: 2px;
    word-spacing: 6px;
    line-height: 2;
}
.head:after{
    content: "";
    border: 5px double #ff6600;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    position: absolute;
}
