*{
     padding: 0;
     margin: 0;
     box-sizing: border-box;
     font-family: 'Red Rose', cursive;
}
/* body background image  */
body{
      width: 100%;
      height: 100%;
      background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../assets/bg-image.png");
      background-size:cover;
      background-attachment:fixed;

      
    }

    nav{
             display: flex;
             justify-content: space-between;
             align-items: center;
             margin: 60px 40px;

          
    } nav img{
      cursor: pointer;
    }

    nav ul{
      display: flex;
      list-style: none;
      justify-content: space-between;
      align-items: center;
      gap:40px;
      
    }
    nav ul li {
      justify-content: space-between;
    }
    nav ul li a{
                    text-decoration: none;
                    font-size: 28px;
                    font-weight: 600;
                    color: #d4a50b;

    }
   

    
    main{
    

     display: flex;
     flex-direction: column;text-align: center;
justify-content: center;
align-items: center;

text-align: center;
      
    }

    main h2{
              font-size:5.5rem;
              line-height: 6.3rem;
              color: #d4a50b;
              font-weight:400;
              font-family: "Dela Gothic One", cursive;
              margin-bottom: 30px;
    }


    .btn{
     padding:10px 25px;
     font-size: 2rem;
     background-color: #ff505f;;
     color: #ffffff;
     border: none;
     cursor: pointer;
     
}

footer img{
                width: 150px;
                float: right;
                margin-top: 15px;
                margin-right:20px ;

}