/* Modal window */
#modalWindow {
	display: none; 							/* Hidden by default */
    position: fixed; 						/* Stay in place */
    z-index: 1; 							/* Sit on top */
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 						/* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.4); 	/* Black w/ opacity */
    padding-top: 40px;
}

/* Modal content */
#modalContent {
    background-color: #fefefe;
    margin: 0 auto; 
    padding: 10px;
    border: 1px solid #888;
    width: 62%; 
	aspect-ratio: 4/3;
}

/* Style for the iframe */
#contentFrame {
    width: 100%;
    height: 100%; 
    border: none;
}

/* Close button */
#closeButton {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

#closeButton:hover,
#closeButton:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
