*{
    margin: 0px;
    padding: 0px;
}

@font-face {
    font-family: "CoolBits";
    src: url("Fuentes/CoolBits.ttf");
}

@font-face {
    font-family: "VCR_OSD";
    src: url("Fuentes/VCR_OSD_MONO_1.001.ttf");
}

.overlayvhs{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vw;
    z-index: 9999;
    pointer-events: none;

    background-image: url("Sprites/Patronvhs.jpg");
    background-repeat: repeat;
    background-size: auto;
    mix-blend-mode: overlay;
    opacity: 40%;
}

body {
    background-image: url("Sprites/Background\ Eyes2.jpg"); /* Fondo de web */
    background-repeat: repeat;
    background-size: 15vw;
    background-position: center;
}

#container{             /* Conteneder de index */
    width: 95vw;
    height: 90vh;
    margin: 2vw auto;
    border: 2px solid white;
    background-color: rgb(22, 22, 22);
    display: flex;
    animation: glowpulsecontainer 2s infinite alternate;
}


                                         /* columnas */   
.left{                                
    width: 33vw;      
    border: 2px solid white;
    display: flex;
    flex-direction: column;
}

.center{
    width: 7vw;
    border: 2px solid white;
    margin: 0%;
}

.right{
    text-align: center;
    width: 60vw;
    border: 2px solid rgb(255, 255, 255);
    padding: 1vw;
}
                                    /* columnas izqui */
.columna-perfil{
    width: 50vw;
    height: 100%;
    overflow: hidden;
    border-right: 4px solid rgb(255, 255, 255);
    border-bottom: 4px solid rgb(255, 255, 255);
}

.columna-perfil img{ /* imagen */
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.columna-descri{
    width: 50vw;
    height: 100%;
    overflow: hidden;
    margin: 1vw;
}

.padreizquierda{
    display: flex;
    height: 50vh;
    margin-bottom: 0%;
}

.bienvenidatext{
    margin-top: 2vh;
    margin-bottom: 2vh;
    margin-left: 1vw;
    margin-right: 1vw;
    height: 100vh;
    overflow: hidden;
}

h3 + h3 {
    margin-top: 5vh;
}

.amigoscaja{
    text-align: center;
    border-top: 4px solid rgb(255, 255, 255);
    height: 10vh;
    margin-bottom: 5vh;
    margin-top: auto;
    padding: 0%;
}

.laindance{
    width: 100vh;
    height: 48vh;
    margin-top: 30vh;
    overflow: hidden;
}

.laindance img{
    width: 100vh;
    height: 100vh;
    object-fit: cover;
}

@keyframes glowpulse {                      /* GLOW */
    0%, 100% {
        text-shadow: 0 0 5px rgba(255, 255, 255,0.5),
                     0 0 10px rgba(255, 255, 255,0.5),
                     0 0 20px rgba(255, 255, 255,0.5);
}
50% {
    text-shadow: 0 0 20px rgba(255, 255, 255,0.5),
                 0 0 40px rgba(255, 255, 255,0.5),
                 0 0 60px rgba(255, 255, 255,0.5);
    }
}

@keyframes glowpulsecontainer {                      /* GLOW CONTAINER */
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 255, 255,0.3),
                     0 0 10px rgba(255, 255, 255,0.3),
                     0 0 20px rgba(255, 255, 255,0.3);
}
50% {
    box-shadow: 0 0 20px rgba(255, 255, 255,0.3),
                 0 0 40px rgba(255, 255, 255,0.3),
                 0 0 60px rgba(255, 255, 255,0.3);
    }
}



/* IMAGENES STAMPADOS */

.scroll-container {
    margin-left: 0.5vh;
    margin-right: 0.5vh;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.scroll-content {
    display: flex;
    flex-direction: column;
    animation: scroll 20s linear infinite;
}

.scroll-container:hover .scroll-content {       /* pausar al pasar el ratón */
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

.scroll-container {
    display: flex;
    flex-direction: column;
}

.scroll-content img {
    width: 100%;
    margin-bottom: 0.5vh;
}








header{                 /* Cabezal */
    height: 10vh;
    width: auto;
    text-align: center;
    line-height: 10vh;
    animation: glowpulse 2s infinite alternate;
}

/* Personalizar Textos */

h1{
    font-family: "CoolBits";
    color: white;
    size: 100vw;
}

h2{
    font-family: "CoolBits";
    color: white;
    size: 100vw;
}

h3{
    font-family: "VCR_OSD";
    color: white;
    size: 100vw;
}

p{
    font-family: "CoolBits";
    color: white;
    size: 100vw;
}

footer{
     font-family: "CoolBits";
     color: white;
     size: 100vw;
}

