.modal {
    position: fixed;
    top: 25%;
    right: 25%;
    bottom: 25%;
    left: 25%;
    width: 45%;
    height: 55%;
    font-family: Arial, Helvetica, sans-serif;
    background: rgba(30, 94, 146, 0.918);
    z-index: 99999;
    opacity:0;
    -webkit-transition: opacity 200ms ease-in;
    -moz-transition: opacity 200ms ease-in;
    transition: opacity 200ms ease-in;
    pointer-events: none;
}

.modal:target {
    opacity: 1;
    pointer-events: auto;
}

.modal > div {
    width: 400px;
    position: relative;
    margin: 10% auto;
    padding: 15px 20px;
    background: #fff;
}

.modal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 5vw;
}

.modal h3 {
    margin: 10px;
    color: #ffffff;
}

.modal p {
    margin: 10px;
    color: #ffffff;
}

.fechar {
    position: absolute;
    width: 30px;
    right: -15px;
    top: -20px;
    text-align: center;
    line-height: 30px;
    margin-top: 5px;
    background: #535353;
    border-radius: 50%;
    font-size: 16px;
    color: #ffffff;
    text-decoration:none;
    font-weight: bolder;
}
