#video-box-container {
             max-width:1000px;
             height: 400px;
             margin:auto;
             display: flex;
             justify-content: center;
             align-items: center;
             margin-top: 50px;
/*             border:1px solid red;*/
             background-color: #FCFAEE;
             background-color: #F8F1F1;
             box-shadow: 1px 1px 1px 0.1px black;
             padding: 4px;
             border-radius: 5px;
           }

           .video-container {
               width:600px;
               height: 300px;
/*               border:1px solid red;*/
              box-shadow: 1px 1px 20px 0.1px black;
               display: flex;
               justify-content: center;
               align-items: center;
               align-content: center;
           }

           .video-container > .youtube-video {
               width:100%;
               height: 100%;
/*               border:1px solid red;*/
           }

           .video-slider-btn {
/*             width:20%;*/
             width:100px;
             height: 40px;
/*             border:1px solid red;*/
             display: flex;
             justify-content: center;
/*             transition: all linear 0.3s;*/
             margin:2px;
             color:#4682A9;
             font-size: 1rem;
             border-width: 0.2px;
           }

           #video-forwardbtn {
            width:50px;
            height: 100%;
/*            border:0.2px solid black;*/
            border:none;
            box-shadow: 1px 1px 1px 0.2px black;
           }

           #video-backwardbtn {
            width:50px;
            height: 100%;
            border:none;
            box-shadow: -1px 1px 1px 0.2px black;
           }

           #video-backwardbtn > img {
            width:100%;
            height: 100%;
           }

            #video-forwardbtn > img {
            width:100%;
            height: 100%;
           }

           .video-slider-btn:active {
               transform: scale(0.9);
           }


        @media (max-width:425px) {

               .video-slider-btn {
                width:30px;
                height: 30px;
/*                border:1px solid blue;*/
               }

               #video-box-container {
                max-width:95%;
               }
          }
