.text-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: scroll;
    color: black;
}

.textlightbox-content {
    background-color: #fff;
    width: 65%;
    margin: 100px auto;
    padding: 20px;
    border-radius: 5px;
    position: relative;
}
.textlightbox-content h1{
    text-align: center;

    font-family: 'Courier New', Courier, monospace;
    font-size: 35px;
    font-weight: 600;
}
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.myBotton:hover{
    color: #f8842b;
    cursor: pointer;
}



/* Responsivo*/

@media (max-width: 768px) {
    .textlightbox-content{
        width: 90%;
    }
}
