/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

html,body {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
  overflow: scroll
}

html,body {
  margin:0;
    padding:0;
    overflow-x:hidden;
  overflow-x: hidden;
}

.homepage {
  background: rgb(151,27,235);
  background: linear-gradient(90deg, rgba(151,27,235,1) 6%, rgba(135,29,233,1) 47%, rgba(128,30,232,1) 65%, rgba(76,48,199,1) 100%);
  padding-bottom: 20px;
}

nav {
  display: flex;
  justify-content: space-between;
  margin: auto;
  width: 1150px;
  /* align-items: center; */
  /* padding: 30px 10%; */
   padding-top: 40px;  
}

nav a {
  all: unset;
  font-size: 125%;
  cursor: pointer;
  color: white;
  padding: 5px 10px;
  height: 22px;
}
nav a:hover {
  color: rgb(170, 62, 235);
  background-color: white;
  margin: none;
  border-radius: 100px;
  transition: 700ms;
}

nav a:nth-of-type(3):hover {
  color: white;
  background-color: inherit;
  border-radius: 0;
  transition: 0;
}

nav .a2:hover {
  color: rgba(71,35,227,1);
}



.logo-icon {
  position: absolute;
  height: 1.7em;
  width: 1.7em;
  left: -4rem;
  bottom: 0.4rem;
}

nav h1 {
  position: relative;
  font-size: 180%;
  line-height: 1.5em;
  margin-left: 72px;
  bottom: 1.4rem;
  color: white;
  font-weight:bolder;
}

nav h1:hover {
  cursor: default;
}

/* Nav for Mobile */

.nav-mobile {
  display: none;
}
#menu a {
  text-decoration: none;
  color: #8a8a8c;
  opacity:1;
  font-family: 'Poppins', sans serif;
  font-size: 1.5em;
  font-weight: 400;
  transition: 200ms;
}

/* .a4 {
    border-bottom: 1px rgb(194, 194, 194) solid;

} */

#menu a:hover {
  opacity:0.5;
}

#menuToggle ul {
  padding: 0;
  list-style-type: none;
  padding-top: 90px;
}

.nav-mobile {
  height: 65px;
}


#menuToggle {
  display: flex;
  flex-direction: column;
  position: relative;
  top: 25px;
  left: 25px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
  width: 300px;
}

#menuToggle input
{
  display: flex;
  width: 40px;
  height: 32px;
  position: absolute;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
}

#menuToggle span
{
  display: flex;
  width: 29px;
  height: 2px;
  margin-bottom: 5px;
  position: relative;
  background: #ffffff;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 5px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
  top: 0.4rem;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-3px, -1px);
  background: #8a8a8c;
}
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

#menu
{
  position: absolute;
  width: 250px;
  height: 300px;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.5); 
  border-bottom-right-radius: 25px;
  margin: -50px 0 0 -50px;
  padding-top: 52px;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  transition-delay: 2s;
  /* padding-top: 10px; */
  padding-left: 3rem;
}

#menuToggle input:checked ~ ul
{
  transform: none;
}

/* Nav for Mobile ends */

main {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 70px;
  color: white;
}

main h1 {
  text-align: center;
  font-size: 300%;
  padding-bottom: 20px;
}

main h1:hover {
  cursor: default;
}

 main h2 {
  font-size: 150%;
  line-height: 45px;
  padding: 45px 20px 40px 20px;
}

main h2:hover {
  cursor: default;
}

.input {
  display: flex;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 20px;
}

.input input {
  all: unset;
  border-radius: 25px;
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: center;
  background-color: white;
  color: gray;
}

.input button {
  all: unset;
  margin-left: 30px;
  background-color: rgb(175, 66, 243);
  padding: 3px 13px;
  border-radius:25px ;
}

.input button:hover {
  cursor: pointer;
  background-color:rgb(198, 75, 243);
  transition: 500ms;
}

::-webkit-input-placeholder {
  text-align: center;
}

.OR {
  padding-top: 35px;
}

.just {
  padding-top: 5px;
}

main i {
  display: inline;
  justify-content: space-between;
  width: 500px;
  padding-top: 5px;
}

article {
  display: flex;
  justify-content: space-between;
  width: 1000px;
  /* margin-left: 200px; */
  flex-direction: row;
  flex-wrap: wrap;
  /* padding: 20px 10%; */
  padding-top: 100px;
  padding-bottom: 50px;
  margin: auto;
  background-color: white;
}

.myth, .poki, .tfue, .shroud, .xqc, .auron, .ruby, .ibai, .ninja, .lupo {
  width: 264px;
  padding: 10px 20px 10px 20px;
  box-sizing:content-box;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.5); 
   /* box-shadow: 0 15px 25px 3px rgba(0, 0, 0, 0.25);   */
  border-radius: 20px;
  margin-bottom: 60px;
}

.myth h2, .poki h2, .tfue h2, .shroud h2, .xqc h2, .auron h2, .ruby h2, .ibai h2, .ninja h2, .lupo h2 {
  margin: 0;
  padding: 0;
  font-size: 150%;
  text-align: center;
  line-height: 30px;
  margin-bottom:10px ;
  margin-top: 10px;
  color: #2c2b2b;
}

.myth h2:hover, .poki h2:hover, .tfue h2:hover, .shroud h2:hover, .xqc h2:hover, .auron h2:hover, .ruby h2:hover, .ibai h2:hover, .ninja h2:hover, .lupo h2:hover {
  cursor:default;
}

.myth img, .poki img, .tfue img, .shroud img, .xqc img, .auron img, .ruby img, .ibai img, .ninja img, .lupo img {
  height: 300px;
  width: 270px;
}

.myth h3, .poki h3, .tfue h3, .shroud h3, .xqc h3, .auron h3, .ruby h3, .ibai h3, .ninja h3, .lupo h3 {
  padding-top: 20px;
  text-align: justify;
  line-height: 25px;
  margin-bottom: 20px;
  height: 125px;
  color: #616161;
}

.myth h3:hover, .poki h3:hover, .tfue h3:hover, .shroud h3:hover, .xqc h3:hover, .auron h3:hover, .ruby h3:hover, .ibai h3:hover, .ninja h3:hover, .lupo h3:hover {
  cursor: default;
}

.myth a, .poki a, .tfue a, .shroud a, .xqc a, .auron a, .ruby a, .ibai a, .ninja a, .lupo a {
  all: unset;
display: flex;
justify-content: center;
  padding: 5px 10px;
  border-radius: 25px;
  background: linear-gradient(90deg, rgba(151,27,235,1) 6%, rgba(135,29,233,1) 47%, rgba(128,30,232,1) 65%, rgba(76,48,199,1) 100%);
  color: white;
  height: 16px;
}

.myth a:hover, .poki a:hover, .tfue a:hover, .shroud a:hover, .xqc a:hover, .auron a:hover, .ruby a:hover, .ibai a:hover, .ninja a:hover, .lupo a:hover {
  cursor: pointer;
}

.myth img {
  width: 250px;
  padding-left: 15px;
}

.lupo img {
  width: 230px;
  padding-left: 20px;
  margin-left: 7px;
}

.more {
  font-size: 300%;
  margin-right: 100px;
  margin-top: 200px;
}

.more:hover {
  cursor: default;
}

.footer-class {
  background: rgb(151,27,235);
  background: linear-gradient(90deg, rgba(151,27,235,1) 6%, rgba(135,29,233,1) 47%, rgba(128,30,232,1) 65%, rgba(76,48,199,1) 100%);
  height: 150px;
  display:flex;
  justify-content: center;
  /* padding-bottom: 100px; */
  padding-top: 10px;
  margin-top: 50px;
}

.social {
display: flex;
justify-content: space-between;
margin: auto;
width: 300px;
padding-right: 50px;
}

.fa-instagram, .fa-twitter, .fa-envelope {
  color: white;
  padding: 10px 12px;
  border-radius: 100%;
  transition: 500ms;
}


.fa-instagram:hover, .fa-twitter:hover, .fa-envelope:hover {
  background-color: white;
  color: rgb(151,27,235);
  cursor: pointer;
}

.info {
padding-top: 30px;
display: flex;
justify-content: space-between;
margin: auto;
width: 900px;
}

.info a{
  all: unset;
  color: white;
  font-size: 120%;
}

.info a:hover {
  cursor: pointer;
}

 .copyright {
  display: flex;
  justify-content: center;
  margin:auto;
  margin-top: 20.7px;
  font-size:13px;
  color: white;
}

.copyright:hover {
  cursor: default;
}

@media (min-width :300px) and (max-width: 1000000px) {
  .input-mobile {
    display: none;
  }
}

@media (min-width :1255px) and (max-width: 1000000px) {
  nav h1 {
    margin-left: 150px;
  }

}

@media (min-width: 1200px) and (max-width: 1300px) {
  nav {
    width: 1100px;
  }

  nav h1 {
    margin-left: 140px;
  }

}

@media (min-width: 1100px) and (max-width: 1200px) {

  nav {
    width: 1030px;
  }

  nav h1 {
    margin-left: 140px;
  }
 
}

@media (min-width: 1000px) and (max-width: 1255px) {


  main i{
  display: inline;
  justify-content: space-between;
  width: 350px;
  }

  /* article {
    margin-left: 100px;
  } */

  .more {
    margin: auto;
    padding: 50px 0 50px;
  }

  nav h1 {
    margin-left: 140px;
  }
}

@media (min-width:1000px) and (max-width:1100px) {

  nav {
    width: 900px;
  }

  nav h1 {
    margin-left: 140px;
  }

  article {
    width: 700px;
  }

  .info {
    width: 850px;
  }

}

@media (min-width: 900px) and (max-width: 1000px) {
  nav {
    display: none;
  }
  .nav-mobile {
    display: flex;
  }

  .logo-icon {
    position: relative;
    height: 1.6em;
    width: 1.6em;
    left: -3px;
    bottom: 0.6rem;
  }

  .navbar-logo h1 {
    display: flex;
    justify-content: center;
    font-size: 180%;
    line-height: 1.5em;
    color: white;
    font-weight:bolder;
    position: absolute;
    margin-top: 13px;
    margin-left: 50px;
  }

  .info {
    width: 750px;
  }
  
}

@media (min-width: 800px) and (max-width: 900px) {
  nav {
    display: none;
  }
  .nav-mobile {
    display: flex;
  }

  .logo-icon {
    position: relative;
    height: 1.6em;
    width: 1.6em;
    left: -3px;
    bottom: 0.6rem;
  }

  /* .navbar-logo h1 {
    display: flex;
    justify-content: center;
    font-size: 180%;
    line-height: 1.5em;
    color: white;
    font-weight:bolder;
     bottom: 1.5rem;
    top: 0.5em; 
    width: 390px;
    position: absolute;
    left: 54%;
top: 15.5%;
margin-top: -100px; 
margin-left: -230px;
  } */

  .navbar-logo h1 {
    display: flex;
    justify-content: center;
    font-size: 180%;
    line-height: 1.5em;
    color: white;
    font-weight:bolder;
    position: absolute;
    margin-top: 13px;
    margin-left: 25px;
  }

  .info {
    width: 700px;
  }
}

@media (min-width:800px) and (max-width: 1000px) {

  

  main i{
    display: inline;
    justify-content: space-between;
    width: 395px;
    }

  article {
      width: 700px;
    }

  .more {
      margin:auto;
      font-size: 220%;
    }

    
  
}


@media (min-width: 700px) and (max-width: 800px) {
  nav {
    display: none;
  }
  .nav-mobile {
    display: flex;
  }

  .logo-icon {
    position: relative;
    height: 1.6em;
    width: 1.6em;
    left: -3px;
    bottom: 0.6rem;
  }

  /* .navbar-logo h1 {
    display: flex;
    justify-content: center;
    font-size: 180%;
    line-height: 1.5em;
    color: white;
    font-weight:bolder;
     bottom: 1.5rem;
    top: 0.5em; 
    width: 390px;
    position: absolute;
    left: 54%;
top: 15.5%;
margin-top: -100px; 
margin-left: -220px;
  } */

  .navbar-logo h1 {
    display: flex;
    justify-content: center;
    font-size: 180%;
    line-height: 1.5em;
    color: white;
    font-weight:bolder;
    position: absolute;
    margin-top: 13px;
    margin-left: -25px;
  }

  article {
    width: 620px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 0;
  }

  .myth, .poki, .tfue, .shroud, .xqc, .auron, .ruby, .ibai, .ninja, .lupo {
    width: 250px;
    height: 482px;
  }

  .myth h2, .poki h2, .tfue h2, .shroud h2, .xqc h2, .auron h2, .ruby h2, .ibai h2, .ninja h2, .lupo h2{
    font-size: 140%;
  }

  .myth img, .poki img, .tfue img, .shroud img, .xqc img, .auron img, .ruby img, .ibai img, .ninja img, .lupo img {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: auto;
    height: 230px;
    width: 230px;
  }

  .myth h3, .poki h3, .tfue h3, .shroud h3, .xqc h3, .auron h3, .ruby h3, .ibai h3, .ninja h3, .lupo h3 {
    font-size: 95%;
    height: 50px;
    margin-bottom: 82px;
    margin-top: 15px;
    padding-top: 0;
  }

  .myth a, .poki a, .tfue a, .shroud a, .xqc a, .auron a, .ruby a, .ibai a, .ninja a, .lupo a {
    height: 18px;
    font-size: 100%;
  }

  .social {
    width: 250px;
    margin: auto;
    margin-left: 220px;
  }

  #footer-i {
    font-size: 30px;
  }

  .info {
    width: 600px;
    margin-left: 20px;
  }

}

@media (min-width: 600px) and (max-width: 700px) {

  nav {
    display: none;
  }
  .nav-mobile {
    display: flex;
  }

  .logo-icon {
    position: relative;
    height: 1.6em;
    width: 1.6em;
    left: -3px;
    bottom: 0.6rem;
  }

  /* .navbar-logo h1 {
    display: flex;
    justify-content: center;
    font-size: 180%;
    line-height: 1.5em;
    color: white;
    font-weight:bolder;
     bottom: 1.5rem;
    top: 0.5em; 
    width: 390px;
    position: absolute;
    left: 54%;
top: 15.5%;
margin-top: -100px; 
margin-left: -220px;
  } */

  .navbar-logo h1 {
    display: flex;
    justify-content: center;
    font-size: 180%;
    line-height: 1.5em;
    color: white;
    font-weight:bolder;
    position: absolute;
    margin-top: 13px;
    margin-left: -75px;
  }

  article {
    width: 620px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 0;
  }

  .myth, .poki, .tfue, .shroud, .xqc, .auron, .ruby, .ibai, .ninja, .lupo {
    width: 250px;
    height: 482px;
  }

  .myth h2, .poki h2, .tfue h2, .shroud h2, .xqc h2, .auron h2, .ruby h2, .ibai h2, .ninja h2, .lupo h2{
    font-size: 140%;
  }

  .myth img, .poki img, .tfue img, .shroud img, .xqc img, .auron img, .ruby img, .ibai img, .ninja img, .lupo img {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: auto;
    height: 230px;
    width: 230px;
  }

  .myth h3, .poki h3, .tfue h3, .shroud h3, .xqc h3, .auron h3, .ruby h3, .ibai h3, .ninja h3, .lupo h3 {
    font-size: 95%;
    height: 50px;
    margin-bottom: 82px;
    margin-top: 15px;
    padding-top: 0;
  }

  .myth a, .poki a, .tfue a, .shroud a, .xqc a, .auron a, .ruby a, .ibai a, .ninja a, .lupo a {
    height: 18px;
    font-size: 100%;
  }

  .social {
    width: 250px;
    margin: auto;
    margin-left: 150px;
  }

  #footer-i {
    font-size: 30px;
  }

  .info {
    width: 500px;
    margin-left: 20px;
  }

  .info a {
    font-size: 100%;
  }

  }

  @media (min-width: 600px) and (max-width: 650px) {

    article {
      width: 540px;
      display: flex;
      justify-content: space-between;
    }
    
      .myth, .poki, .tfue, .shroud, .xqc, .auron, .ruby, .ibai, .ninja, .lupo {
        width: 215px;
        height: 450px;
      }
    
      .myth h2, .poki h2, .tfue h2, .shroud h2, .xqc h2, .auron h2, .ruby h2, .ibai h2, .ninja h2, .lupo h2{
        font-size: 125%;
      }
    
      .myth img, .poki img, .tfue img, .shroud img, .xqc img, .auron img, .ruby img, .ibai img, .ninja img, .lupo img {
        display: flex;
        justify-content: center;
        padding: 0;
        margin: auto;
        height: 200px;
        width: 200px;
      }
    
      .myth h3, .poki h3, .tfue h3, .shroud h3, .xqc h3, .auron h3, .ruby h3, .ibai h3, .ninja h3, .lupo h3 {
        font-size: 90%;
        height: 50px;
        margin-bottom: 82px;
        margin-top: 15px;
        padding-top: 0;
      }
    
      .myth a, .poki a, .tfue a, .shroud a, .xqc a, .auron a, .ruby a, .ibai a, .ninja a, .lupo a {
        height: 15px;
        font-size: 90%;
      }
    
  }

@media (min-width: 500px) and (max-width: 600px) {
  nav {
    display: none;
  }
  .nav-mobile {
    display: flex;
  }

  .logo-icon {
    position: relative;
    height: 1.6em;
    width: 1.6em;
    left: -3px;
    bottom: 0.6rem;
  }

  /* .navbar-logo h1 {
    display: flex;
    justify-content: center;
    font-size: 180%;
    line-height: 1.5em;
    color: white;
    font-weight:bolder;
     bottom: 1.5rem;
    top: 0.5em; 
    width: 390px;
    position: absolute;
    left: 54%;
top: 15.5%;
margin-top: -100px; 
margin-left: -220px;
  } */

  .navbar-logo h1 {
    display: flex;
    justify-content: center;
    font-size: 180%;
    line-height: 1.5em;
    color: white;
    font-weight:bolder;
    position: absolute;
    margin-top: 13px;
    margin-left: -130px;
  }

  article {
    width: 300px;
    display: flex;
    justify-content: center;
    padding-bottom: 0;
  }
  
    .myth, .poki, .tfue, .shroud, .xqc, .auron, .ruby, .ibai, .ninja, .lupo {
      width: 250px;
      height: 462px;
    }
  
    .myth h2, .poki h2, .tfue h2, .shroud h2, .xqc h2, .auron h2, .ruby h2, .ibai h2, .ninja h2, .lupo h2{
      font-size: 140%;
    }
  
    .myth img, .poki img, .tfue img, .shroud img, .xqc img, .auron img, .ruby img, .ibai img, .ninja img, .lupo img {
      display: flex;
      justify-content: center;
      padding: 0;
      margin: auto;
      height: 230px;
      width: 230px;
    }
  
    .myth h3, .poki h3, .tfue h3, .shroud h3, .xqc h3, .auron h3, .ruby h3, .ibai h3, .ninja h3, .lupo h3 {
      font-size: 95%;
      height: 50px;
      margin-bottom: 65px;
      margin-top: 15px;
      padding-top: 0;
    }
  
    .myth a, .poki a, .tfue a, .shroud a, .xqc a, .auron a, .ruby a, .ibai a, .ninja a, .lupo a {
      height: 15px;
      font-size: 95%;
    }

    .more{
      text-align: center;
    }

  .social {
    width: 250px;
    margin: auto;
    margin-left: 150px;
  }

  #footer-i {
    font-size: 30px;
  }

  .info {
    width: 450px;
    margin-left: 20px;
  }

  .info a {
    font-size: 100%;
  }
  
}
@media (min-width:630px) and (max-width:800px) {

 

  main i {
    width: 295px;
  }

   

  /* .myth, .poki, .tfue, .shroud, .xqc, .auron, .ruby, .ibai, .ninja, .lupo {
    width: 500px;
    height: 650px;
  }

  .myth h2, .poki h2, .tfue h2, .shroud h2, .xqc h2, .auron h2, .ruby h2, .ibai h2, .ninja h2, .lupo h2{
    font-size: 180%;
  }

  .myth img, .poki img, .tfue img, .shroud img, .xqc img, .auron img, .ruby img, .ibai img, .ninja img, .lupo img {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: auto;
    height: 400px;
    width: 360px;
  }

  .myth h3, .poki h3, .tfue h3, .shroud h3, .xqc h3, .auron h3, .ruby h3, .ibai h3, .ninja h3, .lupo h3 {
    font-size: 115%;
    height: 90px;
    margin-bottom: 30px;
    margin-top: 15px;
  }

  .myth a, .poki a, .tfue a, .shroud a, .xqc a, .auron a, .ruby a, .ibai a, .ninja a, .lupo a {
    height: 20px;
    font-size: 110%;
  } */


  .more {
    margin: auto;
    font-size: 200%;
  }  
}
@media (min-width:500px) and (max-width:630px) {

 

  main h2 {
    font-size: 120%;
    line-height: 37px;
    padding: 45px 10px 40px 10px;
  }

  .input {
  padding-top: 20px;
  }

  .input input {
    margin-left: 20px;
  }

  main i {
    width: 240px;
  }

  /* article {
    width: 450px;
    display: flex;
    justify-content: center;
  }

  .myth, .poki, .tfue, .shroud, .xqc, .auron, .ruby, .ibai, .ninja, .lupo {
    width: 350px;
    height: 635px;
  }

  .myth img, .poki img, .tfue img, .shroud img, .xqc img, .auron img, .ruby img, .ibai img, .ninja img, .lupo img {
    height: 370px;
    width: 333px;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: auto;
  }

  .myth h3, .poki h3, .tfue h3, .shroud h3, .xqc h3, .auron h3, .ruby h3, .ibai h3, .ninja h3, .lupo h3 {
    font-size: 110%;
    height: 85px;
    margin-bottom: 60px;
    margin-top: 15px;
  } */

  .more {
    margin: auto;
    font-size: 200%;
  }

}

@media (min-width: 400px) and (max-width: 500px) {
  nav {
    display: none;
  }
  .nav-mobile {
    display: flex;
  }

  .logo-icon {
    position: relative;
    height: 1.6em;
    width: 1.6em;
    left: -3px;
    bottom: 0.6rem;
  }

  /* .navbar-logo h1 {
    display: flex;
    justify-content: center;
    font-size: 180%;
    line-height: 1.5em;
    color: white;
    font-weight:bolder;
     bottom: 1.5rem;
    top: 0.5em; 
    width: 390px;
    position: absolute;
    left: 54%;
top: 15.5%;
margin-top: -100px; 
margin-left: -205px;
  } */

  .navbar-logo h1 {
    display: flex;
    justify-content: center;
    font-size: 180%;
    line-height: 1.5em;
    color: white;
    font-weight:bolder;
    position: absolute;
    margin-top: 13px;
    margin-left: -180px;
  }

  article {
    width: 300px;
    display: flex;
    justify-content: center;
    padding-bottom: 0;
  }
  
    .myth, .poki, .tfue, .shroud, .xqc, .auron, .ruby, .ibai, .ninja, .lupo {
      width: 250px;
      height: 462px;
    }
  
    .myth h2, .poki h2, .tfue h2, .shroud h2, .xqc h2, .auron h2, .ruby h2, .ibai h2, .ninja h2, .lupo h2{
      font-size: 140%;
    }
  
    .myth img, .poki img, .tfue img, .shroud img, .xqc img, .auron img, .ruby img, .ibai img, .ninja img, .lupo img {
      display: flex;
      justify-content: center;
      padding: 0;
      margin: auto;
      height: 230px;
      width: 230px;
    }
  
    .myth h3, .poki h3, .tfue h3, .shroud h3, .xqc h3, .auron h3, .ruby h3, .ibai h3, .ninja h3, .lupo h3 {
      font-size: 95%;
      height: 50px;
      margin-bottom: 65px;
      margin-top: 15px;
      padding-top: 0;
    }
  
    .myth a, .poki a, .tfue a, .shroud a, .xqc a, .auron a, .ruby a, .ibai a, .ninja a, .lupo a {
      height: 15px;
      font-size: 95%;
    }

    .more {
      display: flex;
      justify-content: center;
      text-align: center;
      margin: auto;
      font-size: 200%;
    }

  .social {
    width: 180px;
    margin: auto;
    /* margin-left: 150px; */
    padding: 0;
  }

  #footer-i {
    font-size: 30px;
  }

  .info {
    width: 380px;
  }

  .info a {
    font-size: 100%;
  }
 
}

@media (min-width:320px) and (max-width:400px) {

  article {
    width: 300px;
    display: flex;
    justify-content: center;
    padding-bottom: 0;
  }
  
    .myth, .poki, .tfue, .shroud, .xqc, .auron, .ruby, .ibai, .ninja, .lupo {
      width: 250px;
      height: 462px;
    }
  
    .myth h2, .poki h2, .tfue h2, .shroud h2, .xqc h2, .auron h2, .ruby h2, .ibai h2, .ninja h2, .lupo h2{
      font-size: 140%;
    }
  
    .myth img, .poki img, .tfue img, .shroud img, .xqc img, .auron img, .ruby img, .ibai img, .ninja img, .lupo img {
      display: flex;
      justify-content: center;
      padding: 0;
      margin: auto;
      height: 230px;
      width: 230px;
    }
  
    .myth h3, .poki h3, .tfue h3, .shroud h3, .xqc h3, .auron h3, .ruby h3, .ibai h3, .ninja h3, .lupo h3 {
      font-size: 95%;
      height: 50px;
      margin-bottom: 65px;
      margin-top: 15px;
      padding-top: 0;
    }
  
    .myth a, .poki a, .tfue a, .shroud a, .xqc a, .auron a, .ruby a, .ibai a, .ninja a, .lupo a {
      height: 15px;
      font-size: 95%;
    }

    .more {
      display: flex;
      justify-content: center;
      text-align: center;
      margin: auto;
      font-size: 200%;
        }
}

@media (min-width: 300px) and (max-width: 400px)  {
  nav {
    display: none;
  }
  .nav-mobile {
    display: flex;
  }

  #menuToggle {
    width: 200px;
  }

  .logo-icon {
    position: relative;
    height: 1.6em;
    width: 1.6em;
    left: -3px;
    bottom: 0.6rem;
  }

  /* .navbar-logo h1 {
    display: flex;
    justify-content: center;
    font-size: 160%;
    line-height: 1.5em;
    color: white;
    font-weight:bolder;
     bottom: 1.5rem;
    top: 0.5em; 
    width: 250px;
    position: absolute;
    left: 54%;
top: 15.5%;
margin-top: -95px; 
margin-left: -125px;
  } */

  .navbar-logo h1 {
    display: flex;
    justify-content: center;
    font-size: 180%;
    line-height: 1.5em;
    color: white;
    font-weight:bolder;
    position: absolute;
    margin-top: 13px;
    margin-left: -115px;
  }

  .social {
    width: 180px;
    margin: auto;
    /* margin-left: 150px; */
    padding: 0;
  }

  #footer-i {
    font-size: 28px;
  }

  .info {
    width: 290px;
  }

  .info a {
    font-size: 93%;
  }
 
}

@media (min-width:350px) and (max-width:500px) {

  main h2 {
    font-size: 120%;
    line-height: 30px;
    padding: 45px 10px 40px 10px;
  }

  .input {
  padding-top: 20px;
  }

  .input input {
    width: 270px;
    margin-left: 10px;
  }

  .input button {
    margin-left: 10px;
  }

  main i {
    all: unset;
    display: flex;
    justify-content: center;
  }

 main i:nth-of-type(2) {
   display: none;
 }


  

 
}

@media (min-width: 350px) and (max-width: 425px) {
   
}

@media (min-width: 350px) and (max-width :389px) {
  
}

@media (min-width: 300px) and (max-width :350px) {

  

  main {
    padding-top: 50px;
  }
  main h1 {
    padding: 0;
  }
  main h2 {
    font-size: 105%;
    line-height: 30px;
    padding: 45px 10px 20px 10px;
  }

  .input {
  /* padding-top: 20px;
   */
   display: none;
  }

  .input-mobile {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 20px;
    height: 1.9rem;
  }
  
  .input-mobile input {
    all: unset;
    border-radius: 25px;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
    background-color: white;
    color: gray;
  }
  
  .input-mobile button {
    all: unset;
    margin-left: 10px;
    background-color: rgb(175, 66, 243);
    padding: 3px 10px;
    border-radius:25px ;
  }
  
  .input-mobile button:hover {
    cursor: pointer;
    background-color:rgb(198, 75, 243);
    transition: 500ms;
  }

  /* .input input {
    width: 200px;
    margin-left: 10px;
  }

  .input button {
    margin-left: 10px;
    width: 5px;
  } */

  main i {
    all: unset;
    display: flex;
    justify-content: center;
  }

 main i:nth-of-type(2) {
   display: none;
 }

 

  
}












