/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  display: flex;
  /*justify-content: center;*/
  color: white;
  font-family: Verdana;
  background-image: url("vinilstore.jpg"); /* o .png */
  /*text-align: center;*/
  flex-direction: column; 
}
h1 {color: white; font-size:100px}


.contenedor-flex {
  display: flex;
  justify-content: flex-end;
}

.top {
  display: flex;
  flex-direction: row;
}
.contenedor-p1 {
  
  background-color:  #e2007a;
  outline-width: medium;
  outline-color: white;
  outline-style: solid;
  width: 100%;
  height: 70%;
  flex-direction: column; 
  
}

.main-container{
  display: flex;
  flex-direction: column; 
  
}

.Vlogs, .Movies , .Books, .Memes, .Podcasts, .Projects{
  outline-width: medium;
  outline-color: white;
  outline-style: solid;
  
}



/*.caja1{
    background-image: url("photo1.jpg");
    display:flex;
    justify-content:center;
    align-items:center;
    position:absolute;
    background-position: center;
    width: 200px;
    height:auto;
}*/

.zona {
  bottom: 0;
  width: 100vw;
  height: 120px;
}

.cajas
{
  display: flex;
  z-index: 1; /* 👈 más bajo */
  flex-direction: row; 
  position: fixed;       /* 👈 se mueve respecto a toda la pantalla */
  bottom: 0;             /* 👈 se queda pegada abajo */
  left: -100px;          /* empieza fuera de la pantalla */
  width: 10px;
  height: auto;
  animation: mover 100s infinite linear;
  
}


@keyframes mover {
  0% {
    transform: translateX(-120px); /* comienza fuera */
  }
  50% {
    transform: translateX(100vw);  /* atraviesa la pantalla */
  }
  100% {
    transform: translateX(-120px); /* vuelve al inicio suavemente */
  }
}

.imagen {
  width: 200px;
  z-index: 2; /* 👈 más alto */
}


