@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
/*Còdigos universales de la pàgina*/
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Open Sans', sans-serif;;
}
.modal{
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.modal{
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.5);
	transition: all 500ms ease;
	opacity: 0;
	visibility: hidden;
}
#btn-modal:checked ~ .modal{
	opacity: 1;
	visibility: visible;
	font-size: 17px;
}
.contenedor{
	width: 700px;
	height: 480px;
	margin: auto;
	background: #fff;
	box-shadow: 1px 7px 30px rgba(0,0,0,0.6);
	transition: all 500ms ease;
	position: relative;
	transform: translateY(-35%);
	align-content: center;
	text-align: center;
}
#btn-modal:checked ~ .modal .contenedor{
	transform: translateY(0%);
}
.contenedor header{
	padding: 10px;
	background: #e67070;
	color: #fff;
	align-content: center;

}
.contenedor label{
    position: absolute;
    top: 65px;
    right: 10px;
    color: #fff;
    cursor: pointer;
}
.contenido{
	width: 100%;
	padding: 8px;
	align-content: center;
}
.contenido h4{
	margin-bottom: 5px;
	align-content: center;
}
.contenido p{
	margin-bottom: 6px;
}
#btn-modal{
	display: none;
}

.lbl-modal{
	width: 100%;
	height: 25%;
	background: #fff;
	color: #e67070;
	border-width: 2px;
    border-style: solid;
    border-color: #fff;
	padding: 10px 15px;
	border-radius: 4px;
	cursor: pointer;
	align-content: center;
}

@media only screen and (min-width:320px) and (max-width:768px){
	.contenedor{
		width: 95%;
	}
}
