body.modal-open {
position: fixed;
    overflow: hidden;
    width: 100%;
    top: 0;
    left: 0;
}

	.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  background-color: rgb(0 0 0 / 63%);
}

.modal-content {
  width: 80%;
  height: 100vh;
  margin: auto;
  position: relative;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-content iframe{
    height: 300px;
	 width: 100%;
    max-width:700px;
}
@media screen and (min-width: 750px){
    .modal-content iframe{
        height: 400px;
    aspect-ratio: 16 / 9;
    }
}
.modal-content div{
    width: 100%;
    max-width:700px;
    text-align: right;
}
.close-btn {
    font-size: min(10vw, 3rem);
    color: #ffffff;
    cursor: pointer;
}