@font-face {
    font-family: 'Minecrafter';
    src: url(fonts/Minecrafter.Reg.ttf);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
  

/* Background */
main{
    min-height: 100vh;
    background: linear-gradient(to right top, #1590fe, #69b9ff);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/* Background */

.header{
    background: transparent;
    min-height: 10vh;
    width: 55vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.header h1{
    font-family: 'VT323', monospace;
    color: #fee12f;
    font-weight: 100;
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 4px 4px 2px rgba(0, 0, 0, 0.3);
    user-select: none;
}

.header nav{
    width: 500px;
}

.header nav ul{
    display: flex;
    justify-content: space-between;
    font-family: 'VT323', monospace;
    font-size: 2rem;
    font-weight: 600;
    list-style-type: none;
}

.header nav ul li a{
    text-decoration: none;
    color: #fee12f;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
    user-select: none;
}

.header nav ul li a:hover{
    color: #fff091;
}

@media (max-width: 900px) {
  .header {
    flex-direction: column;
    align-items: center;
    width: 90vw;
  }

  .header h1 {
    font-size: 3rem;
    justify-content: center;
    text-align: center;
  }

  .header nav {
    width: 100%;
  }

  .header nav ul {
    align-items: center;
  }

  .header nav ul li {
    margin: 5px 5px;
    font-size: 25px;
    justify-content: space-evenly;
  }
}

.frame1{
    min-height: 80vh;
    width: 60vw;
    border-radius: 2rem;
    background: linear-gradient(
        to right bottom, 
        rgba(255,255,255,0.3), 
        rgba(255,255,255,0.1)
    );
    margin-bottom: 10%;
    z-index: 2;
    backdrop-filter: blur(0rem);

    display: flex;
    justify-content: center;
    align-items: center;
}

.frame2{
    background: white;
    height: 90vh;
    width: 60vw;
    border-radius: 2rem;
    background: linear-gradient(
        to right bottom,
        rgba(255,255,255,0.1),
        rgba(255,255,255,0.3)
    );
    margin-bottom: 10%;
    z-index: 2;

    /* for div.collection */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* for div.collection */
}

.frame3{
    background: white;
    min-height: 80vh;
    width: 60vw;
    border-radius: 2rem;
    background: linear-gradient(
        to right bottom, 
        rgba(255,255,255,0.3), 
        rgba(255,255,255,0.1)
    );
    z-index: 2;
    margin-bottom: 10%;

    display: flex;
    align-items: center;
    justify-content: top;
    flex-direction: column;
}

.frame4{
    background: white;
    min-height: 80vh;
    width: 60vw;
    border-radius: 2rem;
    background: linear-gradient(
        to right bottom, 
        rgba(255,255,255,0.3), 
        rgba(255,255,255,0.1)
    );
    z-index: 2;
    backdrop-filter: blur(0rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 900px) {
    .frame1{
        width: 100vw;
    }

    .frame2{
        width: 100vw;
    }

    .frame3{
        width: 100vw;
    }

    .frame4{
        width: 100vw;
    }
}

.tmcontainer{
    min-height: 80vh;
}
.frame4 div.tm{
    width: 60vw;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

@media (max-width: 900px) {

    .frame4 div.tm{
        width: 100vw;
    }
}


.frame4 div div img{
    width: 200px;
    height: 200px;
    -webkit-user-drag: none;
}

.frame4 div.tm-text{
    font-family:  'VT323', monospace;
    font-size: 100px;
    color: #fee12f;
    user-select: none;
    text-align: center;
    display: flex;
}

.frame4 .tm-content1{
    background-color: #f2f2f2;
    width: 40%;
    border-radius: 2rem;
    display: flex;
    justify-content: top;
    align-items: center;
    text-align: center;
    background: linear-gradient(
        to right bottom,
        rgba(255,255,255,0.0),
        rgba(255,255,255,0.3) 
    );
    user-select: none;
    padding-top: 5%;
    padding-bottom: 5%;
}

.frame4 .tm-content1 h1{
    font-family:  'VT323', monospace;
    font-size: 35px;
    color: #fee12f;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.frame4 .tm-content1 h2{
    font-family:  'VT323', monospace;
    font-size: 30px;
    color: #fee12f;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.frame4 .tm-content1 p{
    margin-inline: 10%;
    font-family:  'VT323', monospace;
    font-size: 30px;
    color: #fee12f;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.frame4 .tm-content2{
    background-color: #f2f2f2;
    width: 40%;
    border-radius: 2rem;
    display: flex;
    justify-content: top;
    align-items: center;
    text-align: center;
    background: linear-gradient(
        to right bottom,
        rgba(255,255,255,0.3),
        rgba(255,255,255,0.0)
    );
    user-select: none;
    padding-top: 5%;
    padding-bottom: 5%;
}

.frame4 .tm-content2 h1{
    font-family:  'VT323', monospace;
    font-size: 45px;
    color: #fee12f;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.frame4 .tm-content2 h2{
    font-family:  'VT323', monospace;
    font-size: 30px;
    color: #fee12f;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.frame4 .tm-content2 p{
    margin-inline: 10%;
    font-family:  'VT323', monospace;
    font-size: 30px;
    color: #fee12f;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.frame4 .tm-text{
    text-shadow: 2px 6px 2px rgba(0, 0, 0, 0.3);
}

.frame4 .tm-content2 img{
    transform: scaleX(-1);
}

.frame4 .tm .twt{
    height: 50px;
    width: 50px;
    cursor: pointer;
}


.frame4 .tm .twt:hover{
    border: 2px solid white;
    border-radius: 25%;
}

.frame2 div.collection{
    background: transparent;
    height: 80%;
    width: 90%;
    border-radius: 2rem;
    margin-block: 1rem;
    overflow-y: scroll;
    scrollbar-width: thin;
}

.frame2 div.collection::-webkit-scrollbar {
    width: 6px;
}

.frame2 div.collection::-webkit-scrollbar-track {
    background-color: #f2f2f2;
    border-radius: 10px;
}

.frame2 div.collection::-webkit-scrollbar-thumb {
    background-color: #fee128;
    border-radius: 10px;
}

.frame2 div.collection div{
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    margin-inline: 1rem;
}

.frame2 div.collection img{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    border: 1px solid white;
}


.frame2 .col-header h1{
    font-family: 'VT323', monospace;
    color: #fee12f;
    font-weight: 100;
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 4px 4px 2px rgba(0, 0, 0, 0.3);
    user-select: none;
    text-align: center;
}


/* test */
.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

@media (min-width: 992px) {
    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mt-1 {
    margin-top: 3rem !important;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #0e0e0e;
    border-radius: 0.5rem;
    user-select: none;
    -webkit-user-drag: none;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    -webkit-user-drag: none;
    user-select: none;
}

.card-body {
    flex: 1 1 auto;
    padding: 0rem 0rem;
    font-weight: 100;
    font-size: 16px;
    color: #fee12f;
    font-family: '', monospace;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
    user-select: none;
    -webkit-user-drag: none;
}


.card-title {
    margin-bottom: 0.1rem;
    user-select: none;
    -webkit-user-drag: none;
}


.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.justify-content-center {
    justify-content: center !important;
}


.footer2{
    background: transparent;
    min-height: 10vh;
    width: 55vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    padding-bottom: 1%;
    user-select: none;
}

.footer2 h1{
    font-family: 'VT323', monospace;
    color: #fee12f;
    font-weight: 100;
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 4px 4px 2px rgba(0, 0, 0, 0.3);
    user-select: none;
}

.footer2 h2{
    font-family: 'VT323', monospace;
    color: #fee12f;
    font-weight: 100;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 4px 4px 2px rgba(0, 0, 0, 0.3);
    user-select: none;
    text-align: center;
}

.footer2 h2 a {
    text-decoration: none;
    color: #fee12f;
}

.footer2 h1 > p{
    font-family: 'VT323', monospace;
    color: #fee12f;
    font-weight: 100;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 4px 4px 2px rgba(0, 0, 0, 0.3);
    user-select: none;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.footer2 nav{
    width: 500px;
}

.footer2 nav ul{
    display: flex;
    justify-content: space-between;
    font-family: 'VT323', monospace;
    font-size: 2rem;
    font-weight: 600;
    list-style-type: none;
}

.footer2 nav ul li a{
    text-decoration: none;
    color: #fee12f;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
    user-select: none;
}

.footer2 nav ul li a:hover{
    color: #fff091;
}

.footer2 h1 p a> img{
    width: 25px;
    height: 25px;
    cursor: pointer;
    border: 1px solid white;
    border-radius: 25%;
}

@media (max-width: 900px) {
  .footer2 {
    flex-direction: column;
    align-items: center;
  }

  .footer2 h1 {
    font-size: 3rem;
    justify-content: center;
    text-align: center;
  }

  .footer2 h1 > p {
    font-size: 1rem;
  }

  .footer2 nav {
    width: 100%;
  }

  .footer2 nav ul {
    flex-direction: column;
    align-items: center;
  }

  .footer2 nav ul li {
    margin: 10px 0;
  }
}

.frame2 #search-input {
  border: none;
  border-radius: 10px;
  padding: 5px;
  background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 100%);
  color: #fff;
  font-family: 'VT323', monospace;
  font-size: 22px;
  outline: none;
  display: none;
}

#search-input::placeholder {
  color: #fff;
  opacity: 0.7;
}

#search-input:focus {
  box-shadow: 0 0 5px rgba(255,255,255,0.5);
}

.frame3 .abt{
    position: relative;
    background: transparent;
    height: 70vh;
    width: 90%;
    border-radius: 2rem;
    margin-top: 3rem;
    overflow-x: scroll;
    scrollbar-width: thin;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
    overflow-y: hidden;
}

.frame3 .abt-0, 
.frame3 .abt-1, 
.frame3 .abt-2, 
.frame3 .abt-4{
    cursor: pointer;
}

.frame3 .abt::-webkit-scrollbar {
    width: 6px;
}

.frame3 .abt::-webkit-scrollbar-track {
    background-color: #f2f2f2;
    border-radius: 10px;
}

.frame3 .abt::-webkit-scrollbar-thumb {
    background-color: #fee128;
    border-radius: 10px;
}

.frame3 .hzero{
    font-family: 'VT323', monospace;
    color: #fee12f;
    font-weight: 100;
    font-size: 9rem;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 4px 4px 2px rgba(0, 0, 0, 0.3);
    user-select: none;
    display: flex;
    justify-content: center;
    text-align: center;
    width: 1000px;
}

.frame3 .hfirst{
    font-family: 'VT323', monospace;
    color: #fee12f;
    font-weight: 100;
    font-size: 4rem;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 4px 4px 2px rgba(0, 0, 0, 0.3);
    user-select: none;
    display: flex;
    text-align: center;
    width: 1000px;
}

.frame3 .hfirst4{
    font-family: 'VT323', monospace;
    color: #fee12f;
    font-weight: 100;
    font-size: 4rem;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 4px 4px 2px rgba(0, 0, 0, 0.3);
    user-select: none;
    display: flex;
    text-align: center;
    width: 1000px;
}

.frame3 .abt div{
    display: flex;
   margin-right: 40%;
}

.frame3 .abt .abt-4{
    margin-right: 0%;
}

.frame3 .abt .abt-0 img{
    position: absolute;
    width: 200px;
    height: 200px;
    z-index: 0;
    top: 69%;
    left: 0;
}

.frame3 .abt .abt-1 img{
    position: absolute;
    width: 200px;
    height: 200px;
    z-index: 0;
    top: 69%;
    left: 215%;
    transform: scaleX(-1);
}

.frame3 .abt .abt-2 img{
    position: absolute;
    width: 200px;
    height: 200px;
    z-index: 0;
    top: 69%;
    left: 272%;
}

.frame3 .abt .abt-4 img{
    position: absolute;
    width: 200px;
    height: 200px;
    z-index: 0;
    left: 480%;
    top: 69%;
    transform: scaleX(-1);
}

.frame1 .fqa{
    background: transparent;
    height: 70vh;
    width: 90%;
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: space-between;
    font-family: 'VT323', monospace;
    color: #fee12f;
    font-weight: 100;
    font-size: 2rem;
    font-weight: 600;
    text-shadow: 4px 4px 2px rgba(0, 0, 0, 0.3);
    user-select: none;
}

.frame1 .fqa h1{
    
    font-size: 10rem;
    display: flex;
    justify-content: center;
}

.question {
  width: 100%;
  padding: 1rem;
  margin: 1rem 0;
  border: 1px solid #ddd;
  border-radius: 1rem;
  cursor: pointer;
}

.question h2 {
  margin: 0;
}

.answer {
  display: none;
  margin: 0;
}

.question.active .answer {
  display: block;
}

@media (max-width: 900px) {
    .frame1 .fqa {
      width: 90%;
      font-size: 1rem;
      justify-content: center;
    }
  
    .frame1 .fqa h1 {
      font-size: 5rem;
    }

    .answer {
        display: none;
        padding-top: 5%;
        font-size: 1.25rem;
        margin: 0;
    }
}

#reset-btn {
  background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 100%);
  border: none;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  font-family: 'VT323', monospace;
  font-size: 18px;
  margin-left: 10px;
  outline: none;
  padding: 5px;
  user-select: none;
}

#reset-btn:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.2) 100%);
}

#reset-btn:active {
  background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.6) 100%);
}

.flt-btn {
  background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 100%);
  border: none;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  font-family: 'VT323', monospace;
  font-size: 18px;
  margin-left: 10px;
  outline: none;
  padding: 5px;
  user-select: none;
}

.flt-btn:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.2) 100%);
}

.flt-btn:active {
  background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.6) 100%);
}

/* Style the dropdown button */
.dropdown .dropdown-btn {
  background-color: #2878be;
  color: white;
  padding: 12px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* Style the dropdown content */
.dropdown .dropdown-content {
  display: none;
  position: absolute;
  z-index: 1;
}

/* Show the dropdown content when the button is clicked */
.dropdown .dropdown-btn:focus + .dropdown-content,
.dropdown-content {
  display: block;
}

/* Style the dropdown links */
.dropdown .dropdown-content button {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown .dropdown-content button:hover {
  background-color: #d4d4d4;
}

.dropdown {
    position: relative;
    display: inline-block;
}
  
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  z-index: 1;
  border: 1px solid #ccc;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  margin-top: 5px;
}

.dropdown-content button {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content {
  display: block;
}

#active-button-classes {
  padding: 5px;
  border-radius: 5px;
  font-size: 2rem;
  font-weight: bold;
  font-family: 'VT323', monospace;
  color: #fee12f;
  text-shadow: 4px 4px 2px rgba(0, 0, 0, 0.3);
  user-select: none;
}

.activeclasstext{
    padding: 5px;
    border-radius: 5px;
    font-size: 2rem;
    font-weight: bold;
    font-family: 'VT323', monospace;
    color: #fee12f;
    text-shadow: 4px 4px 2px rgba(0, 0, 0, 0.3);
    user-select: none;
}


@media (max-width: 800px) {

    .frame3 .hzero{
        width: 350px;
        font-size: 6rem;
        text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
    }
    .frame3 .hfirst{
        width: 320px;
        height: 350px;
        font-size: 1.5rem;
        text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
    }
    .frame3 .hfirst4{
        width: 320px;
        height: 350px;
        font-size: 1.5rem;
        text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
    }
    
    .frame3 .abt .abt-0 img{
        z-index: -1;
    }
    .frame3 .abt .abt-1 img{
        z-index: -1;
    }
    .frame3 .abt .abt-2 img{
        z-index: -1;
    }
    .frame3 .abt .abt-4 img{
        z-index: -1;
    }

    .frame2 .col-header h1{
        font-size: 3rem;
    }

    .frame3 .abt .abt-0 img{
        z-index: -1;
        top: 55%;
        left: 0;
    }

    .frame3 .abt .abt-1 img{
        z-index: -1;
        top: 55%;
        left: 180%;
    }

    .frame3 .abt .abt-2 img{
        z-index: -1;
        top: 55%;
    }

    .frame3 .abt .abt-4 img{
        z-index: -1;
        top: 55%;
        left: 450%;
    }

}

@media (min-width: 2000px) {
    .frame3 .hzero{
        font-family: 'VT323', monospace;
        color: #fee12f;
        font-weight: 100;
        font-size: 9rem;
        font-weight: 600;
        text-transform: uppercase;
        text-shadow: 4px 4px 2px rgba(0, 0, 0, 0.3);
        user-select: none;
        display: flex;
        justify-content: center;
        text-align: center;
        width: 55vw;
    }
    
    .frame3 .hfirst{
        font-family: 'VT323', monospace;
        color: #fee12f;
        font-weight: 100;
        font-size: 3.85rem;
        font-weight: 600;
        text-transform: uppercase;
        text-shadow: 4px 4px 2px rgba(0, 0, 0, 0.3);
        user-select: none;
        display: flex;
        text-align: center;
        width: 55vw;
    }
    
    .frame3 .hfirst4{
        font-family: 'VT323', monospace;
        color: #fee12f;
        font-weight: 100;
        font-size: 4rem;
        font-weight: 600;
        text-transform: uppercase;
        text-shadow: 4px 4px 2px rgba(0, 0, 0, 0.3);
        user-select: none;
        display: flex;
        text-align: center;
        width: 55vw;
    }
    
    .frame3 .abt div{
        display: flex;
       margin-right: 40%;
    }
    
    .frame3 .abt .abt-4{
        margin-right: 0%;
    }
    
    .frame3 .abt .abt-0 img{
        position: absolute;
        width: 200px;
        height: 200px;
        z-index: 0;
        top: 69%;
        left: 0;
    }
    
    .frame3 .abt .abt-1 img{
        position: absolute;
        width: 200px;
        height: 200px;
        z-index: 0;
        top: 69%;
        left: 215%;
        transform: scaleX(-1);
    }
    
    .frame3 .abt .abt-2 img{
        position: absolute;
        width: 200px;
        height: 200px;
        z-index: 0;
        top: 69%;
        left: 292%;
    }
    
    .frame3 .abt .abt-4 img{
        position: absolute;
        width: 200px;
        height: 200px;
        z-index: 0;
        left: 480%;
        top: 69%;
        transform: scaleX(-1);
    }
    
}

.ordcont{
    display: flex;
    justify-content: center;
}

.ordimg{
    height: 50px;
    width: 50px;
    cursor: pointer;

}


.ordimg:hover{
    border: 2px solid white;
    border-radius: 25%;
}

