*{
    padding: 0;
    margin: 0;
    font-size: 15px;
}

/* Un toque de personalización */
::selection{
    background-color: #2ECC71;
    color: #000;
}
/* --- */

body{
    cursor: url('../imgs/rdm/cursor.png'), auto;
    font-family: 'Press Start 2P', monospace;
    height: 100vh;
    width: 100%;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.background{
    z-index: -1;
    background: url("../imgs/rdm/bg2.jpg") center center repeat;
    background-size: 100vh;
    height: 100vh;
    width: 100%;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: fadeInAnimation ease 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
/* Se divide al bg en 3 secciones grandes, para que las estrellas en la mitad puedan tener la capacidad de repetirse, y así minimizar tiempos de carga */
.bgUp{
    height: 25vh;
    background: url("../imgs/rdm/bg1.jpg") center bottom repeat-x;
    background-size: auto 100%;
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
.bgBtm{
    height: 25vh;
    background: url("../imgs/rdm/bg3.jpg") center top repeat-x;
    background-size: auto 100%;
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
.contenido{
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    opacity: 0;
    animation: fadeInAnimation ease 5s;
    animation-iteration-count: 1;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}
/* Las animaciones en los elementos dependen de qué velocidad quiero aplicarles */
.logo-100{
    width: 30vh;
	animation: float2 8s ease-in-out infinite;
}
.montadito-intro{
    opacity: 0.8;
    text-align: center;
    font-size: 2vh;
    line-height: 2.6vh;
    width: 90vw;
    max-width: 60vh;
	animation: float3 8s ease-in-out infinite;
}
.montadito-intro .no-wrap{
    font-size: 2vh;
    line-height: 2.6vh;
}
.montadito{
    margin: 6vh;
    opacity: 0.35;
    filter: saturate(0%); /* Aplico una interacción a nivel del "color" del montadito. Pasa de BN a color con el primer click */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	animation: float3 8s ease-in-out infinite;
}
.montadito.visible{
    opacity: 1;
    filter: saturate(100%); /* Aplico una interacción a nivel del "color" del montadito. Pasa de BN a color con el primer click */
    transition: all 0.4s ease-in;
}
.montadito-img{
    width: 30vh;
}
.montadito-num{
    text-align: center;
    margin-top: 2vh;
    font-size: 4vh;
}
 /* Le pongo una img personalizada al cursor */
button{
    cursor: url('../imgs/rdm/cursor.png'), auto;
    appearance: none;
    -webkit-appearance: none;
    font-family: 'Press Start 2P', monospace;
    border: none;
    background-color: transparent;
}
 /* Y lo pongo acá también porque o sino se mostraba el de defecto */
a{
    cursor: url('../imgs/rdm/cursor.png'), auto;
    text-decoration: none;
    color: #fff;
}
 /* "sobreescribo" varios estilos del botón por defecto */
.btn-close{
    background: #CE372B;
    display: inline-block;
    position: absolute;
    top: 3vh;
    right: 3vh;
    text-align: center;
    font-size: 2vh;
    padding: 1.35vh;
    font-family: 'Press Start 2P', cursive;
    text-decoration: none;
    color: #fff;
    box-shadow: inset -1vh -1vh 0 0 #67120C;
    opacity: 0;
    animation: fadeInAnimation ease 3s, float1 8s ease-in-out infinite;
    animation-iteration-count: 1;
    animation-delay: 2s;
    animation-fill-mode: forwards;
}
.btn-close:hover,
.btn-close:focus{
    background: #9B231A;
    box-shadow: inset -1.1vh -1.1vh 0 0 #67120C;
}
.btn-close:active{
    box-shadow: inset 1vh 1vh 0 0 #67120C;
}
/* Reglas que se van a repetir */
.btn-close:before,
.btn-close:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    box-sizing: content-box;
}
/* Reglas que no se repiten */
.btn-close:before{
    top: -1vh;
    left: 0;
    border-top: 1vh #F5B7B1 solid;
    border-bottom: 1vh #F5B7B1 solid;
}
.btn-close:after{
    left: -1vh;
    top: 0;
    border-left: 1vh #F5B7B1 solid;
    border-right: 1vh #F5B7B1 solid;
}
.btn{
    background: #2ECC71;
    display: inline-block;
    position: relative;
    text-align: center;
    font-size: 2.2vh;
    padding: 2.5vh;
    font-family: 'Press Start 2P', cursive;
    text-decoration: none;
    color: #05012B;
    box-shadow: inset -1vh -1vh 0 0 #239B56;
	animation: float1 8s ease-in-out infinite;
}
.btn:hover,
.btn:focus{
    background: #28B463;
    box-shadow: inset -1.1vh -1.1vh 0 0 #239B56;
}
.btn:active{
    box-shadow: inset 1vh 1vh 0 0 #239B56;
}
.btn:before,
.btn:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    box-sizing: content-box;
}
.btn:before{
    top: -1vh;
    left: 0;
    border-top: 1vh #D5F5E3 solid;
    border-bottom: 1vh #D5F5E3 solid;
}
.btn:after{
    left: -1vh;
    top: 0;
    border-left: 1vh #D5F5E3 solid;
    border-right: 1vh #D5F5E3 solid;
}
/* Animaciones varias, para animar entradas, y para una sensación de gravedad 0 en ciertos elementos, 3 "variaciones" distintas */
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}
@keyframes float1 {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
	100% {
		transform: translateY(0);
	}
}
@keyframes float2 {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-20px);
	}
	100% {
		transform: translateY(0);
	}
}
@keyframes float3 {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-30px);
	}
	100% {
		transform: translateY(0);
	}
}