
      body {
        margin: 0; 
        font-family: 'Domine', serif;
      }
      .ic-video {
        position: fixed;
        right: 0;
        bottom: 0;
        width: 100%; 
        height: 100%;
        object-fit: cover;
      }
      .content {
        position: fixed;
        color: #2B2A2A;
        padding: 20px;
        top: 45%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        text-transform: uppercase;
        width: 100%;
    }
    .content img {
        width: 70px;
    }
    .content h1 {
        font-weight: 400;
        font-size: 85px;
        margin-top: 10px;
        margin-bottom: 5px;
    }
    .content p {
        font-weight: 500;
        font-size: 25px;
        line-height: 33px;
        letter-spacing: 2px;
    }

    /* -------------------------------------------------------------responsive------------------------------------------------ */


@media (max-width:991px) {
    
}

@media (max-width:767px) {
    .content h1 {
        line-height: 75px;
        margin-bottom: 15px;
        margin-top: 15px;
    } 
}
@media (max-width:575px) {
    .content img {
        width: 60px;
    }
    .content h1 {
        line-height: 70px;
        margin-bottom: 15px;
        margin-top: 15px;
        font-size: 70px;
    }
    .content p {
        font-size: 20px;
        line-height: 25px;
    }
}

@media (max-width:460px) {
   
    .content img {
        width: 50px;
    }
    .content h1 {
        font-size: 50px;
        line-height: 50px;
    }
    .content p {
        font-size: 18px;
    }
}




    
