         /* Adding Google Font  */
         @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400&display=swap');

         .custom-video{
             display: flex;
             flex-wrap: wrap;
             justify-content: center;
         }

         .custom-video__container {
             position: relative;
             top: 0;
             width: 25rem;
             height: auto;
             margin: 1em;
             font-family: 'Oswald', sans-serif;
             
         }

         .custom-video__video {
            border-radius: 1rem;
             cursor: pointer;
         }
         .main-video__video{
            border-radius: 1rem;
            cursor: pointer;
         }
         .custom-video__control {
             position: absolute;
             top: 45%;
             left: 45%;
             z-index: 999;
             background-color: rgba(0, 0, 0, 0.5);
             border-radius: 50%;
             padding: 1em;
             display: flex;
             justify-content: center;
             align-items: center;
             color: #ffffff;
             font-size: 1em;
             font-weight: 400;
             width: 3em;
             height: 3em;
             white-space: nowrap;
             line-height: 0;
         }

         video::-webkit-media-controls {
             position: relative;
             z-index: 1;
         }