.myModal{
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0,0.8);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 40;
    display: flex;

    animation: modal 2s 3s forwards;
    visibility: hidden;
    opacity: 0;

}

#cerrar:checked + label, #cerrar:checked ~ .myModal{
    display: none;
}

@keyframes modal{
    100%{
        visibility: visible;
        opacity: 1;
    }
}

.contenido-modal{
    margin: auto;
    padding: 5%;
    width: 60%;
    height: 90%;
    background-image: url(../img/fondo_ventana.jpg);
    /*background: white;*/
    border-radius: 10px;
    
}

.contenido-modal h3 h4 {
    text-align: center;
}

.contenido-modal p {
    text-align: justify;
}
/* .contenido a{
    text-decoration: none;
    color: white;
    background: red;
} */
.myButton {
    /* width: 300px; */
   
	/* box-shadow:inset 0px 1px 0px 0px #f7c5c0;
	background:linear-gradient(to bottom, #fc8d83 5%, #e4685d 100%); */
    /* background-color:#fc8d83; */
    background:  #a51733;
	border-radius:26px;
	/* border:1px solid #d83526; */
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	/* font-size:18px; */
	font-weight:bold;
	/* padding:6px 14px; */
	text-decoration:none;
	text-shadow:0px 1px 0px #b23e35;
}
.myButton:hover {
	/* background:linear-gradient(to bottom, #e4685d 5%, #fc8d83 100%); */
    background-color:#e4685d;
    text-decoration: none;
    color:#ffffff;
}
.myButton:active {
	position:relative;
	top:1px;
}
.myButton img{
    left: auto;
}

#cerrar{
    display: none;
}

#cerrar + label{
    position: fixed;
    color: white;
    font-size: 25px;
    z-index: 50;
    background: red;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 50%;
    right: 10px;
    cursor: pointer;

    animation: modal 2s 3s forwards;
    visibility: hidden;
    opacity: 0;
}