.modal {    position: fixed;    top: 0%;    right: 0;    bottom: 0%;    left: 0;    font-family: Arial, Helvetica, sans-serif;    background: rgba(0,0,0,1);						/* Altera cor de fundo pelo opacity. Original 0.8 */    z-index: 1;    opacity:0;    -webkit-transition: opacity 400ms ease-in;    -moz-transition: opacity 400ms ease-in;    transition: opacity 400ms ease-in;    pointer-events: none;}.modal:target {    opacity: 1;    pointer-events: auto;}.modal < div {             width: 50%;										/* AQUI MUDA!!!! */             position: relative;             margin: 10% auto;             padding: 15px 20px;             background: #fff;         }div {    width: 100%;										/* AQUI MUDA!!!! */}a.fechar {    position: absolute;    width: 20%;    display: block;    right: 0;    top: 80%;    text-align: center;    line-height: 30px;    margin-top: 5px;    background: white;    font-size: 16px;    color: rgb(255,50,0);    font-weight: bold;    text-decoration: none;    letter-spacing: 1.3;    left: 0;    margin: 0 auto;}.fechar:hover {    text-decoration:none;    color:black;    background-color:rgb(255,50,0);    font-weight:none;    z-index:1000;    color:white;    font-weight:bold;    letter-spacing:1.3;}