.modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: #ccc ; /* cinza */
}

.modal-content {
    background-color: #FF1493; /* Magenta */
    color: #ffccf2; /* Rosa */
    margin: 15% auto; 
    padding: 20px;
    border: 1px solid #888;    
    width: 60%; /* Ajuste a largura conforme desejado */
    max-width: 500px; /* Defina uma largura máxima */
	font-size: 26px; /* Ajuste o tamanho da fonte */
}

.close {
    color: #ffccf2; /* Rosa */
    float: right;
    font-size: 24px;
    font-weight: bold;
    background-color: #9932CC; /* lilas */
    border: none;
    border-radius: 3px;
    padding: 5px 10px;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
