body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

.titulo{
    display: none;          
    color: #8aaaef;         
    text-align: center;    
    margin-top: 40px;       
}

.modal__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); 
}

.modal__content {
    position: relative; 
    width: 400px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    margin: 15% auto; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.modal__title {
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #8aaaef;
}

.modal__body {
    font-size: 1.1em;
    color: #555;
    line-height: 1.5;
}

.modal__close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #050505;
}

.modal__close-button:hover {
    color: #8aaaef;
}


.modal{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: none;
}

.modal--visible {
    display: block;
}