@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@500&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  font-family: "Didact Gothic", sans-serif;
  font-size: 1em;
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #FFFFFF;
  background-color: #3f2e52; /* <-- color de fons lila de yugo a la gigafoto */
}

img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.megacontainer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
}

.megacontainer .info-ext {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  float: left;
  background-color: #3f2e52; /* <-- color de fons de la part esquerra lila de yugo */
  z-index: 1000000;
  /*-webkit-box-shadow: -30px 0px 25px 47px rgba(0, 0, 0, 0.48);
  box-shadow: -30px 0px 25px 47px rgba(0, 0, 0, 0.48);*/            /* <-- esborro una ombra negre que no queda be */
  width: 35%;
  height: 100vh;
  margin: 0px;
}

.megacontainer .info-ext .info-ext-header {
  /*background-image: url("fons.jpg");
  background-size: cover;*/                      /* <-- esborro la imatge .jpg de fons i li poso un color pla a la seguent linia */
  background-color: #3f2e52; 
  display: table;
  width: 100%;
  margin: 0;
  z-index: 1000000;
}

.megacontainer .info-ext .info-ext-header .info-ext-header-ico_noinfo {
  position: relative;
  float: right;
  opacity: 0.60;
  cursor: pointer;
  top: 25px;
  right: 25px;
}

.megacontainer .info-ext .info-ext-header .info-ext-header-ico_noinfo:hover {
  opacity: 1;
}

.megacontainer .info-ext .info-ext-header .info-ext-header-titol {
  color: #2940e8;
  margin: 50px 60px 20px 25px;
   /*font-family: 'EB Garamond', serif;*/                   /* <-- canvio la font i poso a la seguent linia la Gotic sense serif */
  font-family: "Didact Gothic", sans-serif;
  font-size: 2em;
  font-weight: bold;
}

.megacontainer .info-ext .info-ext-content {
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 25px 20px 25px;
  color: #4edfbe;                  /* <-- lletra del text normal color que jo vull */
}

.megacontainer .info-ext .info-ext-content div {
  width: 100%;
}

.megacontainer .info-ext .info-ext-content img {
  width: 100%;
}

.megacontainer .pano {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0px;
}

.info_ext_curta {
  pointer-events: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  float: left;
  z-index: 100000;
  margin: 20px 0px 0px 0px;
  width: auto;
}

.info_ext_curta .info-ext-header {
  background-color: #000000;
  display: table;
  width: 100%;
}

.info_ext_curta .info-ext-header .info-ext-header-ico_noinfo {
  display: none;
}

.info_ext_curta .info-ext-header .info-ext-header-titol {
  color: #f0f0f0;
  padding: 5px 10px 5px 5px;
  font-size: 1em;
  max-width: 400px;
}

.info_ext_curtam {
  pointer-events: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  float: left;
  z-index: 100000;
  margin: 24px 25px 0px 0px;
  width: auto;
}

.info_ext_curtam .info-ext-header {
  background-color: #000000;
  display: table;
  width: 100%;
}

.info_ext_curtam .info-ext-header .info-ext-header-ico_noinfo {
  display: none;
}

.info_ext_curtam .info-ext-header .info-ext-header-titol {
  color: #f0f0f0;
  padding: 5px 10px 5px 5px;
  font-size: 1em;
  max-width: 400px;
}
/*# sourceMappingURL=tema.css.map */






/* ULTIMS CANVIS MARTI */

/* Les lletres clicables les poso del color que vull */
a {
  color: #ffc442;
  text-decoration: none; /* opcional: quita el subrayado */
}

a:hover {
  color: #ff8c9d;
  text-decoration: underline; /* opcional: subrayado al pasar por encima */
}





/* Scrollbar completa */
::-webkit-scrollbar {
  width: 12px; /* puedes ajustar el ancho */
}

/* Fondo del scrollbar */
::-webkit-scrollbar-track {
  background: #3f2e52; /* violeta */
}

/* Barra del scroll */
::-webkit-scrollbar-thumb {
  background: #ffffff; /* blanca */
  border-radius: 6px; /* bordes redondeados */
}

/* Opcional: cambiar color al pasar por encima de la barra */
::-webkit-scrollbar-thumb:hover {
  background: #fe5349; /* roja al pasar el cursor */
}