.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* 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.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 10vh auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
  height: 80vh;
}

.modal-video{
  display: inline-block;
  width: 49%;
  height: 100%;
}

.modal-text{
  display: inline-block;
  width: 49%;
  height: 100%;
  vertical-align: top
}

.modalDesc{
  height: 50%;
}

.modal h1{
  color: black;
  font-size: 2em;
  margin: 5vh 0 3vh 0;
  transition: all 0.4s ease 0s;
  letter-spacing: 1px;
}

.modal p{
    transition: all 0.4s ease 0s;
}

.modalVideo{
  z-index: 10;
  width: 100%;
  transition: all 0.4s ease 0s;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

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

.btnmodal {
    color: #000;
    background: rgba(0,0,0,0);
    padding: 15px;
    border: 3px solid #000;
    transition: all 0.4s ease 0s;
    font-size: 1.2em;
    letter-spacing: 3px;

}

.btnmodal:hover {
    color: #000 !important;
    background: #01ffae;
    border-color: #01ffae !important;
    transition: all 0.4s ease 0s;
}
