::-webkit-scrollbar {
    width: 20px;
  }
  ::-webkit-scrollbar-thumb {
    background: lightgray; 
    border-radius: 5px;
  }
  /* p {
    text-align: center;
  } */
  .title {
    text-align: center;
    text-transform: uppercase;
  }
  .video {
    width: 100%;
    height: 500px;
    margin: auto;
    display: block;
    border: none;
    position:relative;
  }
  .close-btn {
      position:absolute;
      top:-30px;
      right:0;
  }
  .popup-btn:hover {
    color: white;
    background-color: black;
  }
  .video-popup {
    display: none;
    width: 100%;
    height: 100vh;
    margin: auto;
    position: fixed;
    top: 0;
    boxshadow: 10px 10px 10px 10px black;
  }
  .popup-bg {
    background: rgba(0,0,0,0.8);
    width: 100%;
    height: 100vh;
    position: absolute;
  }
  .popup-content {
    background: black;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: auto;
  }
  .popup-title {
    padding: 30px;
    margin: 0 auto;
    color: red;
    text-transform: uppercase;
  }
  