.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 10; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.7); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: transparent;
  margin: auto;
  width: 90vw;
  max-width: 1080px;
  height: 65vh;
  padding: 20px;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  /* float: right; */
  font-weight: bold;
  /* margin: 0px 0px 30px 0px; */
  font-size: 30px;
  z-index: 11;
  position: absolute;
  right: 0px;
}

.close:hover,
.close:focus {
  color: #F20519;
  text-decoration: none;
  cursor: pointer;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  margin-top: 50px;
  margin-bottom: 100px;
}

@media screen and (max-width: 480px) {
  .modal-content {
    height: 100px;
    margin-top: 30vh;
  }

  .close {
    font-size: 20px;
  }

  .video {
    margin-top: 30px;
  }
}