@import url("reset.css");


.container{
   min-height: 100vh;  
   overflow: hidden; 
   color: silver;
}

.image-background {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100vw;
    min-height: 100vh;
    width: 100%;
    height: 100%;
    background-color: #000;
}

.image-background img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.dark-layer{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.desktop{
    display: block;
}
.mobile{
    display: none;
}

/* main y footer INICIO*/
.main{
    height: 85vh;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

#footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    height:15vh;
}

 #footer img {
    height:15vh;
    width: 100%;  
    opacity: 0.4;
 }

.fondo-footer-desktop{    
      display: block;
}

.fondo-footer-mobile{    
    display: none;
}

.title{
    width: 100%;
    height: 10vh;    
    text-align: center;    
   
}
.title > p{
    font-family: "Kanit", sans-serif;
    vertical-align: bottom;
    font-size: 1.8em;
   
}  
/* main y footer FIN*/


/* iconos redes sociales */
.social { 
    height: 75vh;
    width:7vw ;   
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:center;
    align-self: center;
}

.social a{
    width: 25px;
    height: auto;
    margin: 10px 0;    
}


.social img{
    width: 100%;
    height: auto;
}

.social a:hover{
    width: 30px;
}


/* menu */
.menu {
    height: 75vh;
    width:7vw ;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-around;    
}

.item-menu {
    align-self: center;
    transform: rotate(90deg);
    width: 155px;
    text-align: center;
    font-family: "Kanit", sans-serif;
    font-size: 1em;
    padding: 4px 0;
    margin: 0 15px;
    cursor: pointer;
}

.item-menu:hover {   
    font-size: 1.3em;
}

.selected{
    border-bottom:white solid 2px;
}

/* main seccion */

.navegation-seccion {
    height: 75vh;
    width: 84vw;    
    display: flex;   
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.content {
    width: 100%;
    text-align: center;
    font-family: "Kanit", sans-serif;
    font-size: 16px;
}

.content:not(:first-child){
    background-color: rgba(0, 0, 0,.8);
}

.hide{
    display: none;
}


/* videos */
.games{
    font-size: 1.2em;
    height: 75vh;
    overflow: hidden;
}

.videos-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    height: 75vh;
}

.video-frame {
    max-width: 280px;
    width: 100%;
    margin: 7px;
}

.video {
    position: relative;
    padding-bottom: 56.25% !important;
    height: 0;
    overflow: hidden;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 92%;
}

.game-name {    
    width: 100%;
    height: 5%;
    padding: 1.5%;  
    /* background: linear-gradient(45deg, #000000, #625D5D,  #898080,  #E5E5E5,  #898080, #625D5D, #000000); */
}

@keyframes beat {
    0%, 50%, 100% { color : white; font-size: .8em;}
    30%, 80% { color: rgb(76, 57, 57); font-size: .9em;}
  }
    

.game-name > span{
    cursor: pointer;
}
.easeInOut {
    animation: 6s ease-in-out 0s infinite beat;
  }



/* bio */
.bio {
    font-size: 1.2em;
    height: 100%;
    overflow: hidden;
   
}

.bio-container {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    padding-right: 20px;
    box-sizing: content-box;
    padding-bottom: 20px;
}

p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
}

#portrait{
    max-width: 180px;
    width: 100%;
    margin: 7px;
}

/* game detail */
.game-datail {   
    font-size: 1.2em;
    height: 100%;
    overflow: hidden;
}

.game-datail-container {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    padding-right: 20px;
    box-sizing: content-box;
    padding-bottom: 20px;    
}

.platforms_logos{
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.platforms_logos img{
    max-width: 80px;
    width: 100%;
    margin: 7px;
}
 
/* animaciones */
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}


/* medias  */
@media (max-width: 800px) {
	.mobile {
		display: block;
	}
	.desktop {
		display: none;
	}
	
    .fondo-footer-mobile{
        display: block;
    }
    .fondo-footer-desktop{
        display: none;
    }
	.video-frame {
		border-width: 3px;
	}
}

@media (max-width: 600px) {
    p {
        margin-top: 7px;
    }
      
    .menu {
        right: calc((32px / 2) + 8px - (568px / 2));
    }
    .social {
        left: 8px;
    }
    .navegation-seccion {
        width: 73%;
    }
    .content {
        font-size: 11.5px;
    }
   
    .games {
        height: 100%;
        overflow: auto;
    }
    .videos-wrapper {
        display: block;
        overflow: auto;
    }
    .video-frame {
        margin: 20px auto;
        width: 90%
    }
    .bio {
        font-size: 0.83em;
        height: 100%;
        overflow: auto;
    }   
    .info {
        margin-bottom: 6px;
    }
}


