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

.modal {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  animation: modal 2s 3s forwards;
  visibility: hidden;
  opacity: 0;
}
#cerrar {
  display: none;
}
#cerrar + label {
  position: fixed;
  color: white;
  font-size: 25px;
  z-index: 9000;
  background: darkred;
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  margin-top: 0;
  right: 5px;
  cursor: pointer;
  animation: modal 2s 3s forwards;
  visibility: hidden;
  opacity: 0;
}
#cerrar:checked + #btn-cerrar, #cerrar:checked ~ .modal {
  display: none;
}
@keyframes modal {
  100% {
    visibility: visible;
    opacity: 1;
  }
}
.pcontenedor {
  text-align: center;
  font-family: "Trebuchet MS", Verdana, "sans-serif";
  margin: 0;
}
video {
  position: relative;
  width: 85%;
  top: 0;
  height: auto;
}
.pcontenido {
  margin: auto;
  width: auto;
  background: none;
}
.ptitulo{
	color: white;
	font-size: 20px;
	
}