*{
    padding: 0;
    margin: 0;
}

body{
    position: fixed;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    font-family: 'Cinzel', serif;
    background-color: #e8ebe4;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;

}

.wolverine-img{
    max-height: 25rem;
}

.nav-btn{
    position: absolute;
    right: 1rem;
    top: 1rem;
    background-color: #242424;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    overflow: hidden;
    z-index: 100;
    cursor: pointer;
}

.nav-btn::after,
.nav-btn::before,
.nav-btn span{
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 1.5px;
    background-image: linear-gradient(to right , transparent , #fff , transparent);
    box-shadow: 0 0 1rem rgba(255,255,255,.6);
    border-radius: 50%;
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-btn::after{
    top: 1.2rem;
}

.nav-btn::before{
    top: 2.8rem;
}

.nav-btn span{
    top: 2rem;
    transition: all .8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


.nav-btn-active::after{
    top: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.nav-btn-active::before{
    top: 50%;
    transform: translateX(-50%) rotate(-45deg);
}

.nav-btn-active span{
    transform: translateX(100%);
}


.nav{
    position: fixed;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background-color: #242424;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: width 1s .5s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-open{
    transition: width 1s cubic-bezier(0.19, 1, 0.22, 1);
    width: 100%;
}

.nav__list{
    list-style: none;
    line-height: 3rem;
    font-size: 1.6em;
    text-align: center;
}


.nav__items__fadein{
    opacity: 0;
    animation: open-list-items .6s cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
}


.nav__items__fadeout{
    animation: close-list-items .2s cubic-bezier(0.455, 0.03, 0.515, 0.955)forwards;
}


@keyframes open-list-items{
    0%{
        transform: translateX(50vw) scale(0);
    }

    60%{
        transform: translateX(-20px) scale(1.2) skew(-100deg);
    }

    100%{
        opacity: 1;
        transform: translateX(0);
    }
}


@keyframes close-list-items{

    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(-100vw);
    }
}


.claw-effect{
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to left , transparent, #fff , transparent);
    transform: translateX(100%);
    transition: transform .6s cubic-bezier(0.19, 1, 0.22, 1);
}

.claw-effect-open{
    transform: translateX(-100%);
}

audio{
    display: none;
}

 /* Youtube Style */

.the-blood-coders__learn-it-btn,
.the-blood-coders__learn-it-btn:link,
.the-blood-coders__learn-it-btn:active,
.the-blood-coders__learn-it-btn:visited {
  padding: 0.5rem 2rem;
  background-color: #242424;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  border-radius: 2px;
  display: flex;
  align-items: center;
  font-weight: 400;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
}



.the-blood-coders__learn-it-btn:active {
    box-shadow: 0 0 0rem rgba(0, 0, 0, 0);
}
  
.the-blood-coders__btn-icon {
    font-size: 1.6em;
    margin-right: 0.5rem;
}



.the-blood-coders__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:#242424;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}
  
  .the-blood-coders__popup {
    width: 18rem;
    padding: 1rem;
    background-color: #fff;
    border-radius: 2px;
    font-family: inherit;
    text-align: center;
    animation: scale 10s;
  }
  
  @keyframes scale{
      0%{
          transform: scale(1.1);
      }
  }

  .the-blood-coders__popup-header,
  .the-blood-coders__popup-header:link,
  .the-blood-coders__popup-header:visited {
    font-size: 1.2em;
    font-weight: 600;
    margin-top: -2.6rem;
    margin-bottom: 2rem;
    background-image: linear-gradient(to right top, #e90606, #ff4a4a);
    color: rgb(241, 241, 241);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1px;
    transform: skew(-10deg) rotate(-3deg);
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
  }
  
  .the-blood-coders__code-name {
    font-size: 1.2em;
    margin-bottom: 1rem;
  }
  
  .the-blood-coders__code-name--span {
    background-image: linear-gradient(to left, #313131c9, #333333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .the-blood-coders__link {
    word-break: break-all;
    line-height: 1.4;
    display: block;
    color: rgb(29, 29, 250);
    margin-bottom: 1.2rem;
  }
  
  .the-blood-coders__ok-btn,
  .the-blood-coders__ok-btn:link,
  .the-blood-coders__ok-btn:active,
  .the-blood-coders__ok-btn:visited {
    text-transform: uppercase;
    margin-top: 1rem;
    display: inline-block;
    padding: 0.5rem 2rem;
    color: #ffffff;
    background-image: linear-gradient(to right, #2b2b2b, #585858);
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    font-weight: 400;
    -webkit-tap-highlight-color: transparent;
    transform: skew(-10deg) rotate(-3deg);
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  }
