* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-fade {
  animation: fadeInUp 0.8s ease-out forwards;
}


header img {
  width: 70px;
  height: auto;
}

header {
  background-color: #F6DEBA;
  position: fixed;
  top: 15px;
  width: 90%;
  z-index: 100;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 65px;
}

.menu_g {
  display: flex;
  max-width: 93%;
  margin: auto;
  justify-content: space-between;
  align-items: center;
}

.dark {
  color: #24170a;
}

nav {
  width: 70%;
  max-width: 550px;
}

nav#desktop ul#menu {
  display: flex;
  list-style-type: none;
  font-size: 20px;
  font-family: "Pirata One", system-ui;
  justify-content: center;
  gap: 24px;
}

nav#desktop ul#menu>li {
  position: relative;
  padding: 18px 10px;
}

nav#desktop ul#menu>li+li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;
  transform: translateY(-50%);
  width: 1.4px;
  height: 24px;
  background: #583A1D;
}

nav#desktop ul#menu>li>a {
  color: #583A1D;
  position: relative;
  display: inline-block;
  transition: color 0.22s ease, transform 0.18s ease;
}

nav#desktop ul#menu>li>a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 64%;
  height: 3px;
  background: linear-gradient(90deg, #FFCF67, #F4B84A);
  border-radius: 2px;
  transition: transform 0.26s cubic-bezier(.2, .9, .2, 1);
}

nav#desktop ul#menu>li>a:hover {
  color: #8c5a2e;
  transform: translateY(-3px);
}

nav#desktop ul#menu>li>a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

nav#mobile ul {
  list-style-type: none;
}

nav#desktop .submenu {
  z-index: 99;
}

nav#desktop ul.submenu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.98);
  transform-origin: top;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  background-color: #221812f5;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

ul.submenu li {
  display: block;
  background-color: #24170a;
  padding: 5px;
  border-bottom: 1px solid #F6DEBA;
}

ul.submenu li:last-child {
  border-bottom: none;
}

ul.submenu a {
  color: #F6DEBA;
  font-family: "IM Fell English", serif;
  display: block;
  transition: color 0.22s ease, padding-left 0.22s ease;
}

ul.submenu a:hover {
  color: #ffd67d;
  padding-left: 10px;
}

#desktop li:hover ul.submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

#bigmac {
  display: none;
  width: 40px;
  height: 28px;
  position: relative;
  z-index: 30;
  cursor: pointer;
}

#bigmac .linha {
  position: absolute;
  height: 4px;
  width: 100%;
  background-color: #583A1D;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
}

#bigmac .linha:nth-child(1) {
  top: 0px;
}

#bigmac .linha:nth-child(2) {
  top: 12px;
}

#bigmac .linha:nth-child(3) {
  top: 12px;
}

#bigmac .linha:nth-child(4) {
  top: 24px;
}

#bigmac.open .linha:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#bigmac.open .linha:nth-child(2) {
  transform: rotate(45deg);
}

#bigmac.open .linha:nth-child(3) {
  transform: rotate(-45deg);
}

#bigmac.open .linha:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

nav#mobile {
  display: none;
}

/*-------------------------fim header----------------------*/


body {
  font-family: "IM Fell English", serif;
  color: #F6DEBA;
}

img {
  display: block;
  width: 100%;
}

.im-fell-english-regular {
  font-family: "IM Fell English", serif;
  font-weight: 400;
  font-style: normal;
}

.im-fell-english-regular-italic {
  font-family: "IM Fell English", serif;
  font-weight: 400;
  font-style: italic;
}

.im-fell-english-regular {
  font-family: "IM Fell English", serif;
  font-weight: 400;
  font-style: normal;
}

.im-fell-english-regular-italic {
  font-family: "IM Fell English", serif;
  font-weight: 400;
  font-style: italic;
}

.pirata-one-regular {
  font-family: "Pirata One", system-ui;
  font-weight: 400;
  font-style: normal;
}


h2,
h1 {
  font-family: "Pirata One", system-ui;
  color: #FFCF67;
  font-weight: 300;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 30px;
}

h5 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
}

h6 {
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 13px;
}

p {
  font-size: 24px;
  line-height: 34px;
}

a {
  font-size: 20px;
  text-decoration: none;
}

button {
  font-family: "IM Fell English", serif;
  color: #FFCF67;
  font-size: 20px;
}

.content {
  width: 80%;
  max-width: 1536px;
  margin: 0 auto;
}



.col6 {
  grid-column: span 6;

}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
}

.grid2 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
}

a {
  display: block;
}

.col4 {
  grid-column: span 4;
}

#containers_ab {
  background-image: url(IMGSS/blue.webp);
  background-size: cover;
  background-attachment: fixed;
}

.container {
  background-image: url(IMGSS/brown.webp);
  background-size: cover;
  background-attachment: fixed;
}

p {
  margin-bottom: 1.3rem;
}


/* --------------------------------OPENING------------------------- */



#opening {
  position: relative;
  text-align: center;
}



#opening h1,
#opening h3 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #F6DEBA;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  width: 100%;
}

#opening h1 {
  top: 32%;
}

#opening h3 {
  top: 40%;
}

#home_mobile {
  display: none;
}


.marginbottom {
  margin-bottom: 10%;
}

.marginbottomtxt {
  margin-bottom: 3%;
}

.margintop {
  margin-top: 5%;
}

/* --------------------------------SMT------------------------- */



#smth {
  width: 40%;
  margin-bottom: 8%;

}

#smth h1 {
  text-align: center;
  margin-bottom: 20px;
}

/* --------------------------------NEWS------------------------- */

#allnws {
  width: 20%;
  text-align: center;
  margin-top: 8%;
  display: block;
  font-size: 16px;
}

.f {
  font-size: 16px;
}

.tit_nw {
  color: #FFCF67;
}

#news img {
  border-radius: 12px;
  margin-bottom: 8px;
}



.buttons {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #FFCF67 0%, #f4b84a 100%);
  margin-top: 20px;
  color: #583A1D;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: background 0.28s ease, transform 0.25s cubic-bezier(.2, .9, .2, 1), box-shadow 0.25s ease, color 0.25s ease;
}

.buttons:hover {
  background: #583A1D;
  color: #FFCF67;
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

/* Specific news button: square corners + arrow on the right with hover animation */
.buttons.news-specific {
  border-radius: 0;
  position: relative;
  padding-right: 48px;
  /* space for the arrow on the right */
  overflow: visible;
}

.buttons.news-specific::after {
  content: '➜';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateX(10px) translateY(-50%);
  opacity: 0;
  color: #583A1D;
  font-size: 22px;
  transition: transform 0.28s ease, opacity 0.28s ease, color 0.28s ease;
}

.buttons.news-specific:hover::after {
  transform: translateX(0) translateY(-50%);
  opacity: 1;
  color: #FFCF67;
}


/* --------------------------------BADGES------------------------- */


.accordion {
  cursor: pointer;
  padding: 14px;
  width: 100%;
  border: none;
  background-color: transparent;
  text-align: left;
  outline: none;
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  border-radius: 6px;
}

.accordion:hover {
  background-color: rgba(0, 0, 0, 0.04);
  transform: translateX(4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.accordion:active {
  transform: translateX(2px);
}

.accordion:after {
  content: '\002B';
  font-weight: bold;
  float: right;
  margin-left: 5px;

}

.accordion.active {
  background-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.09);
}

.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease-out;
}

.panel a {
  color: #F6DEBA;
  display: inline-block;
  transition: color 0.25s ease, transform 0.25s ease;
  text-decoration: underline;
}

.panel a:hover {
  color: #FFCF67;
  transform: translateX(4px);
}

.panel li {
  font-size: 20px;
  line-height: 30px;

}

.panel p {
  font-size: 20px;
  width: 80%;

}

#velhote_cartoes {
  grid-column: 1/6;
}

#badges_list {
  grid-column: 6/13;
}



/* -----------------------------STAFF--------------------------- */

#staff {
  grid-column-start: 7;
  grid-column-end: 12;
}

#img_staff {
  grid-column-start: 2;
  grid-column-end: 7;
}

#tab {
  display: none;
}

#the_staff {
  position: relative;

}

#pergaminho_content {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-48%, -50%);
  width: 70%;
  color: #583A1D;
}

#pergaminho_content h2 {
  color: #583A1D;

}

#pergaminho_content a {
  display: inline-block;
  padding: 18px 26px;
  background: linear-gradient(135deg, #583A1D 0%, #6f4a2b 100%);
  margin-top: 30px;
  color: #FFCF67;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(88, 58, 29, 0.12);
  transition: background 0.35s ease, transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

#pergaminho_content a:hover {
  background: linear-gradient(135deg, #7b5a34 0%, #a0703f 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 30px rgba(88, 58, 29, 0.18);
  color: #FFE7A5;
}


/* --------------------------NEWSLETTER----------------------------------- */


#newsletter_content {
  margin-top: 15%;
}

.newsletter_form {
  max-height: none;
  overflow: visible;
  opacity: 1;
  transition: none;
  margin-top: 20px;
}

.newsletter_form input[type="email"] {
  width: 100%;
  min-height: 40px;
  padding: 8px 20px;
  border-radius: 30px;
  border: 1px solid #F6DEBA;
  font-size: 1rem;
  box-sizing: border-box;
  margin-bottom: 14px;
}

.newsletter_form .buttons {
  display: inline-block;
  margin-top: 0;
}






/* --------------------------VICTORS----------------------------------- */

#victors {
  position: relative;
  text-align: center;
  margin-bottom: 0;
}

#victors_mobile {
  display: none;
}

#victors a {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #F6DEBA;
  font-family: "Pirata One", system-ui;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  bottom: 60%;
  font-size: 40px;
  transition: transform 0.25s ease, color 0.25s ease, text-shadow 0.25s ease;
}

#victors a:hover {
  color: #fceec7;
  transform: translateX(-50%) translateY(-4px) scale(1.04);
  text-shadow: 0 0 12px rgba(244, 184, 74, 0.55);
}


#footer_thingy {
  position: absolute;
  top: 29%;
}




/* --------------------------FOOTER----------------------------------- */

#thingy {
  display: flex;
  justify-content: space-evenly;
}

footer {
  background-image: url(IMGSS/footer_b.jpg);
  padding: 70px 0;
  position: relative;
}

#logos {
  display: flex;
  justify-content: space-around;
}

#logos img {
  width: 80%;
  height: auto;
}



#text {
  text-align: center;
  width: 50%;
  font-size: 16px;
  line-height: 26px;
  margin-top: 12px;
}

#btt {
  margin-top: 10px;
  width: 70%;
}

#btt a {
  width: auto;
  text-align: center;
}

.yellow {
  color: #FFCF67;
}

.lgs {
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    filter 0.3s ease;
}

.lgs:hover {
  transform: translateY(-4px) scale(1.08);
  opacity: 0.9;
  filter: brightness(1.15);
}


/* ----------------------------------------------------ABOUT US-------------------------------------------------------*/



/* -------------------------------------------OPENING-------------------------------------------*/



#dragonfly {
  top: 0;
  width: 50%;
  height: auto;
  position: absolute;
}

#arrows {
  width: 30%;
  height: auto;
  position: absolute;
  right: 0;
  top: 0;
}

#opening_ab h1 {
  margin-left: 36%;
  margin-top: 32%;
  position: absolute;
  top: 0;
}


/* -----------------------------ADVENTURE----------------------------------*/

#embark {
  text-align: center;
}

#adv {
  margin-top: 83%;
  position: relative;
}



/* -----------------------------STORY----------------------------------*/

.imgl {
  grid-column-start: 1;
  grid-column-end: 6;
  rotate: 4deg;
  filter: drop-shadow(0 0 0.75rem #3691A6);
}

.imgr {
  grid-column-start: 7;
  grid-column-end: 13;
  rotate: -4deg;
  filter: drop-shadow(0 0 0.75rem #3691A6);
}

.txtl {
  grid-column-start: 1;
  grid-column-end: 6;
}

.txtr {
  grid-column-start: 8;
  grid-column-end: 13;
}

#str {
  text-align: center;
}

.smt {
  margin-top: 5%;
  display: grid;
  place-items: center;
  opacity: 0;
}

.smt img {
  width: 80%;
}



/* ------------------------------------------------VENDOR HALL----------------------------------*/


/* ------------------------------------------------OPENING VENDOR----------------------------------*/



#opening_vendorhall {
  position: relative;
}

#vendorhall_mobile {
  display: none;
}


#opening_vendorhall h1 {
  top: 32%;
  left: 10%;
  position: absolute;
  max-width: 1536px;
  margin: 0 auto;
  color: #F6DEBA;
  text-shadow: 0 0 5px #24170a;
}


/* ------------------------------------------------GAMES AND MINIATURES----------------------------------*/


#mini {
  width: 80%;
}

.seventy {
  width: 70%;
  margin-bottom: 30px;
}



/* ------------------------------------------------ARTISAN'S TOOLS----------------------------------*/

#mini2 {
  width: 90%;
  margin-top: 15%;
}




/* ------------------------------------------------GAMING GEAR----------------------------------*/


#gaming_gear h2 {
  text-align: center;
  margin-bottom: 4%;
}


/* ------------------------------------------------MAP----------------------------------*/


#map img {
  filter: brightness(0, 88), contrast(1.2);
  margin-bottom: 20px;

}


/* ------------------------------------------------LIST OF THINGSSS----------------------------------*/


#ermm {
  display: flex;
  justify-content: center;
  gap: 8%;
}

#list_thingy {
  font-size: 24px;
  line-height: 34px;
}

#other_list_thingy {
  font-size: 24px;
  line-height: 34px;
}

/* -----------------------------MOBILE----------------------------------*/

@media (max-width: 1191px) {

  #tab {
    display: block;
  }

  #img_staff {
    display: none;
  }

  #pergaminho_content a {
    margin-top: 0;
  }

  #staff h2 {
    margin-bottom: 0;
  }

  .zerogap {
    gap: 0;
  }

  #tab {
    grid-column-start: 2;
    grid-column-end: 12;
  }


  #staff {
    grid-column-start: 2;
    grid-column-end: 12;
  }

  #opening h1 {
    top: 31%;
  }






}

@media (max-width: 977px) {

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 25px;
  }

  h3 {
    font-size: 20px;
  }

  h5 {
    font-size: 16px;
    line-height: 26px;
  }

  h6 {
    font-size: 16px;
  }



  p {
    font-size: 19px;
    line-height: 19px;
  }

  a {
    font-size: 16px;
  }

  #pergaminho_img {
    display: none;
  }

  #the_staff {
    position: static;
    background-image: url(IMGSS/pergaminho_m.webp);
    background-size: cover;
    background-position: center;
    padding: 40px 0;
  }

  #staff {
    grid-column: 2/12;
  }

  #img_staff {
    grid-column: span 12;
  }

  #pergaminho_content {
    position: static;
    transform: none;
    width: 95%;
    gap: 0px;
  }



  #staff h2 {
    margin-top: 10px;

  }

  #the_staff {
    margin-top: 25%;
  }


  #pergaminho_content a {
    padding: 9px 16px;
    width: 35%;

  }

  #opening_ab h1 {
    margin-left: 36%;
    margin-top: 29%;
    position: absolute;
    top: 0;
  }

  #text {
    width: 80%;
  }

  #opening h1 {
    top: 35%;
  }

  #btt {
    gap: 8px;
    width: 100%;

  }

  #vendorhall_mobile {
    display: block;
  }

  #vendorhall {
    display: none;
  }

  #vct {
    display: none;
  }

  #victors_mobile {
    display: block;
  }

  #home_mobile {
    display: block;
  }

  #home_img {
    display: none;
  }

  #footer_thingy {
    top: 58%;
  }



}

@media (max-width: 600px) {


  .menu_g {
    width: 86%;
  }


  header {
    position: fixed;
    top: 15px;
    z-index: 998;
    width: 90%;

    padding: 10px 0;
  }

  #opening h1 {
    top: 32%;
  }

  .light {
    color: #F6DEBA;
  }

  nav#mobile {
    display: block;
    position: fixed;
    z-index: 9999;
    width: 100%;
    top: 65px;
    right: -200vw;
    transition: 0.3s linear;
    background-color: #F6DEBA;
    border-radius: 2px;
  }

  nav#mobile.menu_abre {
    right: 0;
  }

  nav#mobile li:hover {
    cursor: pointer;
  }

  nav#mobile ul.submenu {
    display: none;
    width: 100%;
  }

  nav#mobile ul.submenu.submenu_open {
    display: block;
    animation: slideDown 0.5s ease-out;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      max-height: 0;
    }

    to {
      opacity: 1;
      max-height: 500px;
    }
  }

  #bigmac {
    display: block;
  }

  i {
    transform: rotate(0deg);
    transition: transform 0.2s linear;
  }

  i.indicador_abre {
    transform: rotate(180deg);
    transition: transform 0.2s linear;
  }

  nav#desktop {
    display: none;
  }

  nav#mobile ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }

  nav#mobile li {
    width: 100%;
    padding: 15px 0;
    text-align: center;
    color: #24170a;
  }



  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 25px;
  }

  h3 {
    font-size: 20px;
  }

  h5 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
  }

  h6 {
    font-size: 13px;
  }

  #logo {
    width: 90%;
  }

  p {
    font-size: 16px;
    line-height: 20px;
  }

  a {
    font-size: 16px;
  }

  .content {
    width: 95%;
  }

  /* --------------------------------NEWS------------------------- */





  .buttons {
    padding: 9px 0;
    margin-top: 20px;
    display: block;
    text-align: center;
    width: 45%;
  }

  #news img {
    width: 80%;
  }

  #allnws {
    width: 50%;
    margin-top: 10%;
  }

  #news {
    margin-top: 15%;
    margin-bottom: 18%;
  }

  #news h2 {
    text-align: center;
    margin-bottom: 5%;
  }

  .btt {
    margin-bottom: 10%;
  }

  .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .col4,
  .col6, #velhote_cartoes, #badges_list {
    grid-column: span 1;
  }


  #oit {
    width: 80%;
  }

  #aboutus {
    margin-bottom: 20%;
  }

  #smth {
    width: 70%;

  }

  #allnws {
    margin-bottom: 30%;
  }

  /* --------------------------------BADGES------------------------- */

  #erg {
    width: 100%;
    margin-bottom: 35%;
  }

  #erg img {
    width: 70%;
    margin: 0 auto;
  }




  /* -----------------------------STAFF--------------------------- */


  #pergaminho_img {
    display: none;
  }


  #staff {
    grid-column: span 12;
    text-align: center;
  }

  #img_staff {
    grid-column: span 12;
  }

  #pergaminho_content {
    position: static;
    transform: none;
    width: 95%;
  }



  #the_staff {
    margin-top: 30%;
  }

  #pergaminho_content a {
    padding: 9px 16px;
    width: 40%;
  }


  /* --------------------------NEWSLETTER----------------------------------- */

  #newsletter_content a {
    margin: 0;
  }






  #abus a {
    margin: 0;
  }

  #newsletter img {
    width: 80%;
  }

  #aboutus img {
    width: 80%;
  }

  /* --------------------------VICTORS----------------------------------- */

  #victors a {
    font-size: 18px;
  }



  /* ------------------------------------------------FOOTER----------------------------------*/




  #thingy {
    display: flex;
    flex-direction: column;
    margin-bottom: 35px;
    text-align: center;
  }

  #text {
    width: 90%;
  }

  #logos {
    width: 60%;
    margin: 0 auto;
  }

  /* ----------------------------------------------------ABOUT US-------------------------------------------------------*/


  /* -----------------------------ADVENTURE----------------------------------*/


  #adv {
    margin-bottom: 140px;
    margin-top: 93%;
  }




  /* -----------------------------STORY----------------------------------*/

  #story {
    margin-bottom: 40px;
  }

  .imgl {
    grid-column: span 1;
    rotate: 4deg;
    filter: drop-shadow(0 0 0.75rem #3691A6);
  }

  .imgr {
    grid-column: span 1;
    rotate: -4deg;
    filter: drop-shadow(0 0 0.75rem #3691A6);
  }

  .txtl {
    grid-column: span 1;
  }

  .txtr {
    grid-column: span 1;
    order: -1;
  }


  .smt {
    margin-top: 15%;
  }


  /* ------------------------------------------------VENDOR HALL----------------------------------*/

  /* ------------------------------------------------GAMES AND MINIATURES----------------------------------*/


  .seventy {
    width: 95%;
  }

  #mini {
    width: 60%;
    margin: 0 auto;
  }





  /* ------------------------------------------------ARTISAN'S TOOLS----------------------------------*/



  #mini2 {
    width: 90%;
    margin-top: 0;
    margin: 0 auto;
  }


  #artisans_tools h1 {
    margin-top: 100px;
  }


  /* ------------------------------------------------LIST OF THINGSSS----------------------------------*/



  #list_thingy {
    font-size: 18px;
    line-height: 28px;
  }

  #other_list_thingy {
    font-size: 18px;
    line-height: 28px;
  }

  #ermm {
    width: 80%;
    margin: 0 auto;
  }


  #footer_thingy1 {
    filter: drop-shadow(0 0 1rem rgba(246, 173, 16, 0.13));
  }

  #btt {
    width: 50%;
  }



}