html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  user-select: none;
  margin: 0;
  padding: 0;
  font-family: 'Cormorant SC', sans-serif;
  font-size: 18px;
}

#flasher {
  pointer-events: none;
  z-index: 1500;
  opacity: 0;
  background-color: white;
}

@keyframes flash {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 0;
  }
}

.flash {
  animation: flash 400ms linear;
}

.inset-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

h1 {
  font-family: 'Pinyon Script';
  font-size: 3em;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
  text-align: center;
}
p {
  color: #FFFFFF;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
#particles-js {
  z-index: 1000;
}
#estrellas {
  background-image: url('/static/img/bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 998;
}
#particles-js,#estrellas {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.cosocontenedor {
  padding: 5px 20px;
  width: 320px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  margin: 0 auto;
  z-index: 1001;
  background-color: rgba(78, 78, 78, 0.607);
  backdrop-filter: blur(6px);
  border-radius: 5px;
  border-width: 1px;
  border-color: rgba(47, 47, 47, 0.313);
  border-style: solid;
  pointer-events: none;
  box-shadow: inset 0px 0.5px 1px rgba(131, 129, 129, 0.707);
}
.footer {
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.5);
  border-top: 1px solid #000000;
  font-size: 1.3em;
  text-align: right;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5px 5px;
  height: 40px;
}
.footer a {
  pointer-events: visible;
}
.footer p {
    height: 100%;
    margin: 0;
}
.whatsapp {

  width: 28px;
  height: 28px;
  /*background: transparent url('https://res.cloudinary.com/cosopimba/image/upload/c_scale,fl_png24.preserve_transparency,h_40,q_auto:best/v1496863359/580b57fcd9996e24bc43c543_w2bhav.png') no-repeat center;*/
  background: transparent url('../img/whatsapp_logo.png') no-repeat center;
  background-size: contain;
}
.facebook {

  width:28px;
  height: 28px;
  background: transparent url('../img/facebook.png') no-repeat center;
  background-size: contain;
  /*background: transparent url('img/whatsapp_logo.png') no-repeat center;*/

}
.share-btn {
  display: inline-block;
}
.share-btn span {
  display: none;
}

.video-container {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  overflow: hidden;
}

.video-container > video#bg-video {
  position: relative;
  left:50%;
  background: url('../img/space_bg-1422.jpg') no-repeat;
  background-size: contain;
  transform: translateX(-50%);
  height: 100%;
  z-index: 0;
  width: auto;
}
@media (min-width: 800px) {
  .video-container > video#bg-video {
    width: 100%;
    height: auto;
  }
}
#quote {
  font-size: 16pt;
}
#who {
  font-style: italic;
  text-align: right;
}