:root {
    --color1: #fff;
    --color2: #1d1d1d;
    --color3: #fe001c;
}

@font-face {
    font-family: 'PressStart';
    src: url(../assets/fonts/PressStart2P-Regular.ttf);
}

@font-face {
    font-family: 'Akira';
    src: url(../assets/fonts/Akira-Expanded-Demo.otf);
}

@font-face {
    font-family: 'Arial-Regular';
    src: url(../assets/fonts/Arial-regular.ttf);
}

@font-face {
    font-family: 'Arial-Black';
    src: url(../assets/fonts/Arial-black.ttf);
}

body{
    background: #1d1d1d;
}

body::-webkit-scrollbar{
    width: 4px;
    background: none;
}

body::-webkit-scrollbar-thumb{
    background: var(--color3);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.margin-container{
    width: 90%;
}

.header{
    position: fixed;
    top: 3%;
    right: 5%;
    z-index: 9;
}

.header svg{
    cursor: pointer;
    width: 46px;
    height: 42px;
    margin: 0;
    fill: var(--color1);
    padding: 2px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.header svg:hover{
    background: rgba(255, 255, 255, 0.2);
}

.menu-screen-black{
    width: 100%;
    height: 100vh;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
    position: fixed;
    z-index: 9;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.2s, opacity 0.2s;
    -webkit-transition: visibility 0.2s, opacity 0.2s;
    -moz-transition: visibility 0.2s, opacity 0.2s;
    -ms-transition: visibility 0.2s, opacity 0.2s;
    -o-transition: visibility 0.2s, opacity 0.2s;
}

.menu-screen-black.active{
    visibility: visible;
    opacity: 1;
}

.menu-nav{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*background-color: #1d1d1d;
    */background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(7.2px);
    -webkit-backdrop-filter: blur(7.2px);
    transition: visibility 0.2s, opacity 0.2s;
    -webkit-transition: visibility 0.2s, opacity 0.2s;
    -moz-transition: visibility 0.2s, opacity 0.2s;
    -ms-transition: visibility 0.2s, opacity 0.2s;
    -o-transition: visibility 0.2s, opacity 0.2s;
    border-radius: 20px 0 0 20px ;
    -webkit-border-radius: 20px 0 0 20px ;
    -moz-border-radius: 20px 0 0 20px ;
    -ms-border-radius: 20px 0 0 20px ;
    -o-border-radius: 20px 0 0 20px ;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
}

.menu-nav.active{
    visibility: visible;
    opacity: 1;
}

.menu-nav__title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: 5px 0;
}

.menu-nav__title svg{
    cursor: pointer;
    width: 30px;
    height: 30px;
    margin: 0 0 0 2px;
    fill: var(--color1);
    padding: 2px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.menu-nav__title svg:hover{
    background: rgba(255, 255, 255, 0.2);
}

.menu-nav__title h3{
    font-family: PressStart;
    font-size: 16px;
    color: var(--color1);
}

.menu-nav__hr{
    height: 4px;
    width: 100%;
    background: var(--color2);
    border: none;
}

.menu-nav__list{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

.nav__btn{
    display: flex;
    justify-content: start;
    align-items: center;
    margin-bottom: 4px;
    width: 80%;
    height: 50px;
    text-decoration: none;
    font-family: Arial-Regular;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.nav__btn:hover{
    background: rgba(255, 255, 255, 0.2);
}

.nav__btn--icon{
    fill: var(--color1);
    margin: 0 20px 0 10px;
}

.nav__btn--span{
    color: var(--color1);
}

.section {
    width: 100%;
    height: 100vh;
    background-size: cover;
    margin: 0;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.section-nin64 {
    background-image: url(../assets/img/background/background-nintengo-64.png);
}

.section__title{
    margin-top: 60px;
    z-index: 2;
    width: 1100px;
    position: relative;
    animation: slide-in-fwd-left 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    -webkit-animation: slide-in-fwd-left 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.title1 {
    margin: 0;
    margin-bottom: -20px;
    font-family: PressStart;
    font-size: 27px;
    color: var(--color1);
}

.title2 {
    margin: 0;
    font-family: Akira;
    font-size: 150px;
    color: var(--color3);
}

.title2__add{
    position: absolute;
    display: block;
    top: 10px;
    right: -100px;
    font-family: Akira;
    font-size: 50px;
    color: var(--color3);
    padding: 0px 40px;
    border: 6px solid var(--color1);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    box-sizing: border-box;
}

.section__img{
    width: 970px;
    z-index: 1;
    
}

.img-console{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 970px;
    /*animation: fade-in 2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    -webkit-animation: slide-left 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    */animation: slide-left cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.8s both;
}

.img-characters{
    position: absolute;
    right: 310px;
    bottom: 80px;
    width: 300px;
    /*animation: fade-in 2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    -webkit-animation: slide-left cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.8s both;
    */animation: slide-top cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.8s both;
}

.section__description{
    color: var(--color1);
    font-family: Arial-Black;
    font-size: 16px;
    width: 550px;
    animation: fade-in 2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    -webkit-animation: fade-in 2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.description__select{
    font-family: Akira;
    font-size: 28px;
    color: var(--color1);
    cursor: pointer;
    background: none;
    outline: none;
    appearance: none;
    padding: 6px 20px;
    border: 6px solid var(--color1);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.select__option{
    cursor: pointer;
    background: var(--color2);
}

.description__btn{
    background: var(--color1);
    padding: 6px 30px;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: all .2s;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
}

.description__btn:hover{
    color: var(--color1);
    background: var(--color2);
}

.description__btn-nin64{

}

@keyframes console__slide-in-fwd-right {
  0% {
      transform: translateZ(-1400px) translateX(1000px);
      opacity: 0;
    }
    100% {
      transform: translateZ(0) translateX(0);
      opacity: 1;
  }
}

@keyframes slide-in-fwd-left {
  0% {
    transform: translateZ(-1400px) translateX(-1000px);
    opacity: 0;
  }
  100% {
    transform: translateZ(0) translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
}

@keyframes slide-left {
    0% {
      transform: translateX(100px);
      -webkit-transform: translateX(100px);
      -moz-transform: translateX(100px);
      -ms-transform: translateX(100px);
      -o-transform: translateX(100px);
}
    100% {
      transform: translateX(0);
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
}
  }

@keyframes slide-top {
    0% {
      transform: translateY(100px);
      -webkit-transform: translateY(100px);
      -moz-transform: translateY(100px);
      -ms-transform: translateY(100px);
      -o-transform: translateY(100px);
}
    100% {
      transform: translateY(0);
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
}
  }
  