
.big_container {
    display: flex;
    min-width: 100vw; /* old browser */
    min-width: 100svw;
    min-height: 100vh;
    color: #ffffff;
   	
   	background-image: url("../img/oscura_2.png");
    background-size: cover;
    background-attachment: fixed;
  	background-position: center center;
  	background-repeat: no-repeat;
  	background-color: #303030;
}
/*
.container {
    display: grid;
    grid-template-columns: minmax(320px, 1080px);
    grid-template-rows: 1fr;
    justify-content: center;
    align-items: center;
}
*/
.container {
	display: flex;
	flex-direction: column;
	min-width: 360px;
	max-width: 1080px;
}

/* publicidad */

.publi_izq, .publi_der {
    display: flex;
    flex-grow: 1;
    justify-content: center;
}
.anuncio_izq, .anuncio_der {
    display: none; 
    min-width: 125px;
    flex-grow: 1;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}



.titulo {
  display: flex;
  flex-direction: column;
  max-width: 90vw;
  min-height: 20vh;

/*
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 3.8vw, 2.6rem);
*/
  font-size: 1rem;
  font-size: clamp(1rem, 1.5vw, 2rem);

  font-weight: bold;
  	justify-content: center;
  align-items: center;
  text-align: center;
}
.texto {
  display: flex;
  flex-direction: column;
  max-width: 90vw;
  font-size: 0.8rem; /* old browser */
  font-size: clamp(0.8rem, 3vw, 1rem);
  line-height: 1.6rem;
  text-align: center;
}
.texto_extra {
  min-height: 8vh;
  font-size: 0.8rem;
  font-size: clamp(0.8rem, 1.1vw, 2.5rem);
  justify-content: center;
  color: #fd6abb;
}
.botones {
  display: flex;
  max-width: 90vw;
  min-height: 15vh;
  align-items: center;
  gap: 5vw;
}
.boton {
  width: auto;
  font-size: 0.8rem;
  font-size: clamp(0.8rem, 3.5vw, 1.1rem);
  letter-spacing: 0.04rem;
  border-radius: 0.4rem;
  cursor: pointer;
  padding: 0.6rem 1.5rem;
  transition: all 300ms;
  color: #ffffff;
  background-color: #f83fae;
}
.boton:hover {
  color: #ffffff;
  background-color: #e10f8d;
}

/* cookies */

.cookies {
  	display: flex;
  	flex-direction: column;
  	align-items: center;
}
.texto a {
	font-size: 0.8rem;
  	font-size: clamp(0.8rem, 1.1vw, 2.5rem); 
  	color: #fd6abb;
  	margin-top: 1rem;
  	margin-bottom: 1rem;
  	transition: all 300ms;
}
.texto a:hover {
  	color: #f83fae;
}

/* intro */

#intro {
  	display: none; 
  	flex-direction: column;
  	align-items: center;
}
.boton_normas {
  	color: #f9f9f9;
  	padding: 0.8rem 1rem;
  	background-color: #454545;
}
.boton_normas:hover {
  	color: #ffffff;
  	background-color: #555555;
}

/* animacion css */

/*
.intro_logo {
  	z-index: 4;
}
.anima_intro {
    width: 30px;
    border-radius: 50%;
    animation: scalar 1s ease-in-out both;
    margin-bottom: 3rem;
} 
@keyframes scalar {
    100% { transform: scale(2); }
}
*/

