.overlay {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.94);
}

.overlay-content {
   
    margin-top: 48px;
    color: white;
    padding: 50px 100px 50px 50px;
}

.overlay-content h3 {
    color: white;
}


.overlay a {
    padding: 0.2em;
    text-decoration: none;
    font-size: 1em;
    color: #1eaeee;
    transition: 0.3s;
    
    white-space: pre-wrap; /* css-3 */    
    white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
    white-space: -pre-wrap; /* Opera 4-6 */    
    white-space: -o-pre-wrap; /* Opera 7 */    
    word-wrap: break-word; /* Internet Explorer 5.5+ */
}

.overlay a:hover, .overlay a:focus {
    color: #ee1e2e;
}

.overlay .closebtn {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 60px;
    display: none;
}

@media screen and (max-height: 450px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 20px;
  }
}