.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-image: url('../img/SIMPSONSGALAXY.gif');
    /* Adicione o caminho para sua imagem de fundo */
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: black !important;
    text-align: center;
    /* Isso cria um efeito de sobreposição com a cor de fundo */
}

.modal-content {
    background-color: rgba(255, 255, 255, 0.93);
    /* Adicione uma cor de fundo com transparência */
    margin: 40vh auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    justify-content: center;
    align-items: center;
    border-radius: 36px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}