a {
    text-decoration: none;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
    font-family: Poppins;
    margin: 0;
    background: url(https://bit.ly/4cQ9eIj);
    background-size: cover;
    color: #eee;  
}
svg{
    width: 25px;
}
.Fondo {
    scale: 1.2;
    top: 8vh;
    left: -5vh;
    opacity: .6;
    width: 100%;
    z-index: -1;
    position: absolute;
}
header {
    width: 1200px;
    max-width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    grid-template-rows: 50px;
    justify-content: center;
    align-items: center;    
    z-index: 8850;
}
header .logo {
    top: -83vh;
    left: -78vh;
    scale: 10%;
    font-weight: bold;
    position: fixed;
    animation: Logo 1s linear infinite alternate;
    z-index: 8850;
}
header .menu{
    scale: 110%;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    left: 20vh;
    position: fixed;
    font-weight: 500;
    z-index: 8850;
    border-radius: 20px;
    background: rgb(0,0,0, .5);
}
/* css slider */
.slider{
    height: 100vh;
    margin-top: -50px;
    position: relative;
    z-index: 3333;
}
.slider .list .item{
    position: absolute;
    inset: 0 0 0 0;
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}
.slider .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider .list .item::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(
        to top, #000 40%, transparent
    );
}
.Div {
    margin-left: -10vh;
    width: 120%;
    height: 20vh;
    scale: 70%;
    display: flex;
    flex-direction: row;    
    justify-content: center;
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s .7s ease-in-out 1 forwards;
    animation-duration: 1.3s;
    animation-delay: 1s;
} 
.Div img {
    scale: .7;
    flex-grow: 1;  
    flex-basis: 100px;
    border-radius: 20px;
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s .7s ease-in-out 1 forwards;
    animation-duration: 1.3s;
    animation-delay: 1s;
}
.slider .list .item .content{
    position: absolute;
    left: 10%;
    top: 20%;
    width: 500px;
    max-width: 80%;
    z-index: 1;
}
.slider .list .item .content p:nth-child(1){
    text-transform: uppercase;
    letter-spacing: 10px;
}
.slider .list .item .content h3{
    font-size: 40px;
    margin: 0;
}
.slider .list .item.active{
    opacity: 1;
    z-index: 10;
}
@keyframes showContent {
    to{
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;
    }
}
.slider .list .item.active p:nth-child(1),
.slider .list .item.active h3,
.slider .list .item.active p:nth-child(3){
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s .7s ease-in-out 1 forwards;
}
.slider .list .item.active h3{
    animation-delay: 1s;
}
.slider .list .item.active p:nth-child(3){
    animation-duration: 1.3s;
}
.arrows{
    position: absolute;
    top: 30%;
    right: 50px;
    z-index: 100;
}
.arrows button{
    background-color: #eee5;
    border: none;
    font-family: monospace;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    font-size: x-large;
    color: #eee;
    transition: .5s;
}
.arrows button:hover{
    background-color: #eee;
    color: black;
}
.thumbnail{
    position: absolute;
    bottom: 50px;
    z-index: 11;
    display: flex;
    gap: 10px;
    width: 100%;
    height: 250px;
    padding: 0 50px;
    box-sizing: border-box;
    overflow: auto;
    justify-content: center;
}
.thumbnail::-webkit-scrollbar{
    
}
.thumbnail .item{
    width: 150px;
    height: 220px;
    filter: brightness(.5);
    transition: .5s;
    flex-shrink: 0;
}
.thumbnail .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s .7s ease-in-out 1 forwards;
    animation-duration: 1.3s;
    animation-delay: 1s;
}
.thumbnail .item.active{
    filter: brightness(1.5);
}
.thumbnail .item .content{
    position: absolute;
    inset: auto 10px 10px 10px;
}
@media screen and (max-width: 678px) {
.thumbnail{
    justify-content: start;
}
.slider .list .item .content h3{
    font-size: 50px;
    color: blue;
  &:hover {
      color: #4f9;
  }
}
.arrows{
    top: 10%;
 }
}
#Nota {
  top: 0;
  left: 0;
  width: 100%;  
  height: 100%;
  display: none;
  z-index: 9999;
  overflow: auto;
  position: fixed;
  background: rgb(0,0,0,.5);
}
.Cerrar {
  width: 10%;
  scale: 70%;
  height: 5vh;
  opacity: .9;
  float: right;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  background: gold; 
  border-radius: 50%;
  text-content: center;
 &:hover {
     color: red;
     scale: 101%;
 }
}
@keyframes In {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@keyframes Fin {
    0% {transform: translate(0, 0vh); background: transparent; opacity: 1;}
    99% {transform: translate(0, 5vh); background: transparent;}
    100% {display: none; background: transparent; opacity: 0;}
}
@keyframes Desliz {
    0% {opacity: 0; transform: translate(0, -5vh);}
    100% {opacity: 1; transform: translate(0, 0);}
}
@keyframes Logo {
    from {scale: 10%;}
    to {scale: 9%;}
}
#Search {
    width: 80%;
    border-radius: 50px;
    position: fixed;
    left: 45vh;
    z-index: 9999;
    background: rgb(0,0,0, .5);
}
#Search:hover {
    color: blue;
}
#Aux {
    margin: -3vh 7vh;
    display: none;
    z-index: 9999;
    position: absolute;
}
@keyframes Vista {
    0% {scale: .6;}
   50% {scale: 1;}
   100% {scale: .6;}
}
.Container {
    gap: 20px;     
    display: flex;
    overflow-x: auto;
    padding-left: 15px;
    text-align: center;
    flex-wrap: nowrap;
    animation: Vista;
    animation-timeline: view();
 */ scroll-snap-type: x mandatory;\*
    margin-bottom: 10px;
}
.Container img {
    gap: 5px;
    width: 120px;
    height: 170px;
    transition: .5s;
    border-radius: 10px;
    object-fit: cover;
    scroll-snap-align: start;
    background: rgb(255, 130, 0);
  &:hover {
     transform: perspective(200px)rotateY(45deg);
     padding-left: 5%;
     filter: saturate(150%);
     scale: 120%;
 }
}
.Container a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 110px;
    text-decoration: none;
}

.Container h4 {
    font-size: 12px;
    color: #ccc;
    margin-top: 5px;
}
.Container img:hover + h4 {
     color: #4f9;
}
.Container:hover img:not(:hover){
     filter: opacity(85%) saturate(80%); 
}
.Container::-webkit-scrollbar {
    
}
.H3 {
    text-align: left;
    margin-left: 15px;
    margin-top: 15px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}
.Otros {
    text-align: center;
    margin-left: 15px;
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: white;
}
h4 {
    cursor: none; 
    color: #aaa;  
}
footer{
	background: #141414;
	padding: 20px;
	color: #fff;
	text-align: center;
}
.Head {
    color: #fff;
  &:hover {
      font-size: 20px;
      color: #4f9;
  }
}
.Gallery {
    gap: 10px;
    display: grid;
    width: 90%; height: auto;
    grid-template-columns: repeat(auto-fit,minmax(100px, 1fr));
}
.Otros img {    
    cursor: none;
    transition: .5s;
    border-radius: 8px;
    width: 30%; height: 15vh;
 &:hover {
     scale: 120%;
     border: 2px solid #4f9;
     box-shadow: 0 0 30px #4f9;
 }
}
.Otros:hover img:not(:hover) {
    scale: .8;
    filter: grayscale(1) saturate(80%);
}
#Blue {
    text-align: center;
    list-style: none;
}
#Blue li:hover {
    scale: 1.2;
}
#Blue li a {
    background: linear-gradient(to right, red, blue);
    background-clip: text;
    color: transparent;
    border-radius: 40%;
}
a {
    cursor: none;
}
.Video {
    top: 7vh;
    left: 5vh;
    width: 85%;
    height: 30vh;
    position: fixed;
    border-radius: 20px;
}
#Music {
    background: linear-gradient(to right, red, blue);
    color: transparent;
    background-clip: text;  
 &:hover {
      scale: 120%;
  }  
}
.Controls {
      top: 40vh;
      left: 15vh;
      scale: 80%;
      display: flex;
      position: fixed;
      justify-content: center; 
}
.Controls button {
      margin: 0 5px;
      opacity: .7;
      border-radius: 50px;
      background: gray;
}
*/ #Oculto {
    display: none; \*
}




