@charset "utf-8";
/* CSS Document */

.baby{
	border: 1px solid white;
	color: white;
	border-radius: 4px;
	height: 40px;
	text-align: center;
									
										}
		
		.baby2{
									border: 1px solid black;
									color: black;
									border-radius: 4px;
									height: 40px;
									text-align: center;
			margin: 10px;
			width: 70%;
									
										}
	
	.ahi{
									border: 1px solid white;
									color: white;
									border-radius: 4px;
									height: 70px;
									text-align: center;
									
										}
	
	.vuelve{
									border: 1px solid white;
									color: white;
									border-radius: 4px;
		width: 60px;
									height: 35px;
									text-align: center;
		background-color: crimson;
		margin: auto;
									
										}

.modal-contenido{
  background-color:white;
  width:500px;
  padding: 10px 20px;
  margin: 10% auto;
  position: relative;
	border-radius: 8px;
}
.modal{
  background-color: rgba(0,0,0,.8);
  position:fixed;
  top:0;
  right:0;
  bottom:0;
  left:0;
  opacity:0;
  pointer-events:none;
  transition: all 1s;
}
#miModal:target{
  opacity:1;
  pointer-events:auto;
}

