  
  .modal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 250;
    left: 0;
    top: 0;
    /* width: 100%; */
    height: 100%;
    width: 100%;
    /* overflow: auto; */
    /* background-color: rgb(0,0,0); */
    background-color: rgba(0,0,0,0.8);
}

.modal.hide{
	display:none;
}

  .modalContent {
	display: flex;
    align-items: center;
    flex-direction: column;
    height: 90%;
    width: 90%;
	max-width: 500px
  }

  .closeButton {
    font-size: 2rem;
    border: 1px solid red;
    cursor: pointer;
    color: white;
    background-color: black;
  }

  iframe {
    width: 100%;
    height: 100%;

  }
  