.modalBackground {
    width: 100vw;
    height: 100vh;
    top: 10px;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index:111111111;
  }
  
  .modalContainer {
    width: auto;
    height: auto;
    border-radius: 12px;
    /* background-color: rgba(16, 14, 14, 0.545); */
    background-color: black;
    box-shadow: rgba(0, 0, 0, 0) 0px 5px 15px;
    display: flex;
    flex-direction: column;
    padding: 25px;
  }
  
  .modalContainer .title {
    display: inline-block;
    text-align: center;
    margin-top: 10px;
  }
  
  .titleCloseBtn {
    display: flex;
    justify-content: flex-end;
  }
  
  .titleCloseBtn button {
    background-color: transparent;
    border: none;
    font-size: 25px;
    cursor: pointer;
    color: rgb(255, 250, 250);
  }
  
  .modalContainer .body {
    flex: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.7rem;
    text-align: center;
  }
  
  .modalContainer .footer {
    flex: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .modalContainer .footer button {
    width: 150px;
    height: 45px;
    margin: 10px;
    border: none;
    background-color: cornflowerblue;
    color: white;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
  }
  
  #cancelBtn {
    background-color: crimson;
  }

  .body p{
    color: white;
  }

  iframe{
    width: 1280px  !important;
    height: 580px !important;
  }
  