/*-------------------------------------------
  ----body----
---------------------------------------------*/

body {
  background-image: url('/images/fondo_estrella.jpeg');
  background-size: 100px; 
  background-repeat: repeat;
  font-family: 'rainy hearts', sans-serif;
  min-height: 100vh;
  color: #b29c91;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
  padding: 20px;
  overflow-x: hidden;
  width: 100%;
  display: grid;
}

.flex{
    float: left;
    display: flex;
    width: 800px;
    height: max-content;
}

.grid{
    float: left;
    display: grid;
    width: 800px;
    height: max-content;
}

mark {
 font-family: 'Hachi Maru Pop';
 font-size: 12px;
 background-color: transparent;
 color: white;
 text-shadow: 1px  0px 0px #f1b3bd,
               0px  1px 0px #f1b3bd,
              -1px  0px 0px #f1b3bd,
               0px -1px 0px #f1b3bd;
}

h1 {
  font-family: 'flyover', serif;
  color: #f1b3bd;
}

h2, h3 {
  font-family: 'gentle remind', serif;
  color: #6c564b;
}

/* ---------------------------------------------------
  ----fonts----
------------------------------------------------------*/

.hachi-maru-pop-regular {
  font-family: 'Hachi Maru Pop', cursive;
  font-weight: 400;
  font-style: normal;
}


@font-face {
   font-family: 'rainy hearts'; 
  src: url('/fonts/rainyhearts.woff2') format('woff2'), 
       url('/fonts/rainyhearts.ttf') format('truetype'); 
  font-weight: normal;
  font-style: normal;
}

@font-face {
   font-family: 'gentle remind'; 
  src: url('/fonts/Gentle Remind.woff2') format('woff2'), 
       url('/fonts/Gentle Remind.ttf') format('truetype'); 
  font-weight: normal;
  font-style: normal;
}

@font-face {
   font-family: 'flyover'; 
  src: url('/fonts/Flyover.woff2') format('woff2'), 
       url('/fonts/Flyover.ttf') format('truetype'); 
  font-weight: normal;
  font-style: normal;
}

@font-face {
   font-family: 'cutesy'; 
  src: url('/fonts/Cutesy.woff2') format('woff2'), 
       url('/fonts/Cutesy.ttf') format('truetype'); 
  font-weight: normal;
  font-style: normal;
}

@font-face {
   font-family: 'starborn'; 
  src: url('/fonts/Starborn.otf') format('opentype'), 
       url('/fonts/Starborn.ttf') format('truetype'); 
  font-weight: normal;
  font-style: normal;
}

.bottom-area,
.footer {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  font-family: arial;
  font-size: 12px;
  font-weight: 600;
  color: #8d7c76;
}



/* scrollbar */

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #fff7fa;
  -webkit-border-radius: 0ex;
  border: 1px dotted #edaecb;
}

/*----------------------------------------------------------
----selection---- 
------------------------------------------------------------*/

::selection {
  background-color: #fef4fa;
  color: #8d7c76;
}

::-moz-selection {
  background-color: #fef4fa;
  color: #8d7c76;
}



a {
  text-decoration: none;
  color: #67807a;
  transition: .1s
}

a:link {
  color: #545454;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: #545454;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: #ffe8e9;
  background-color: transparent;
  text-decoration: dotted underline;
  font-style: italic;
}

a:active {
  color: #545454;
  background-color: transparent;
  text-decoration: underline;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style-position: inside;
  list-style-image: url("https://pixels.crd.co/assets/images/gallery111/b71bfd30.gif?v=29416114");
}


li:hover{
    font-style: italic;
    text-decoration: dotted underline;
    padding-left: .67em;
    transition: .3s;
}

#context_menu {
  background: #FEF8FC;
  border: 1px dotted #AAAAAA;
  letter-spacing: 1px;
  width: 70px;
  font-family: 'gentle remind';
  font-size: 8px;
  position: absolute;
  display: none;
  z-index: 100000;
}

#context_menu ul li {
  padding: 4px;
  z-index: 100000;
}

#context_menu ul li:hover {
  background: #FEF8FC;
  color: #848484;
  z-index: 100000;
}

/*-------------------------------------------------*/
/*----container----*/
/*-------------------------------------------------*/

.card-box {
  float: left;
  background-image: url('https://i.pinimg.com/736x/e8/d9/23/e8d923c9c3619a566c6ef9c43798e891.jpg');
  background-size: 100%;
  width: 250px;
  height: 500px;
  position: fixed;
  border: 10px solid;
  border-image: url('/images/deco/borde1.png') 150 repeat;
  border-radius: 10px;
  border-image-outset: 10px;
  display: grid;
  margin-left: 60px;
}


.inside {
  position: relative;
  width: 100%;
  height: 100%;
  background: white;
  border: 4px double #fb9dd4;
  border-radius: 10px;
  margin: auto;
  text-align: center;
}


.icon {
  vertical-align: middle;
  width: 150px;
  border-radius: 10px;
  outline: 1.5px dashed #fb9dd4;
  outline-offset: 3px;
  margin: 20px auto !important;
}

.icon img{
  width: 150px;
  border-radius: 10px;
}  

/*--------------------------------------------------*/
/*----ACCORDION TAB----*/
/*--------------------------------------------------*/

.accordion {
  background-color: #ffbadb;
  float: right;
  display: flex;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 700px;
  height: 50px;
  border: none;
  border-radius: 10px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  transition: 0.4s;
  margin-bottom: 10px;
  margin-left: 150px;
}


.accordion:hover {
  text-decoration: dashed underline;
  font-style: italic;
}


.content {
  text-align: center;
  width: 700px;
  margin-left: 150px;
  border-bottom: 4px double lightgrey;
  border-radius: 10px;
  display: none;
  background-color: white;
  overflow: hidden;
  margin-bottom: 10px;
  justify-content: center;
}

.content2 {
  text-align: center;
  width: 700px;
  margin-left: 150px;
  border: 1.5px dashed #fb9dd4;
  border-radius: 10px;
  background-color: white;
  overflow: hidden;
  margin-bottom: 10px;
  margin: 10px auto;
}

.inline-image {
  float: left;
  margin-right: 5px;
  width: 200px;
  height: auto;
}


.divisor-fondo {
    background-image: url('https://files.catbox.moe/hu41hq.gif');
    background-repeat: repeat;
    background-position: center;
    background-size: contain;
    border-radius: 20px;
    height: 70px;
    width: 95%;
    margin: 10px auto !important;
}
/*--------------------------------------------------*/
/*----TEXT----*/
/*--------------------------------------------------*/


.generate-font {
  font-family: 'gentle remind';
  color: #6c564b;
  margin: auto;
  font-size: 25px;
  text-align: center;
  justify-content: center;
  align-content: center;
}

/*---------------------------------*/
/*Carrousel*/
/*---------------------------------*/

.contenedor-barra {
    width: 95%;
    height: 60px;
    overflow: hidden;
    background-color: transparent;
    margin: auto;
  }

  .barra-giratoria {
    display: flex;
    width: 200%; 
    animation: moverBarra 8s ease-in-out infinite alternate;
  }

  .barra-giratoria img {
    height: 40px;
    margin: 2px;
  }


  @keyframes moverBarra {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

/*----------------------------------------*/
/*----FAVOURITES----*/
/*----------------------------------------*/

.box-characters {
  position: relative;
  overflow: hidden;
  background-image: url('https://i.pinimg.com/736x/50/dc/5a/50dc5a9cead001ae559dfbdeb34fe0c6.jpg');
  background-size: 50%;
  background-color: #fef4fa;
  width: 690px;
  border: 4px double #fb9dd4;
  border-radius: 12px;
  box-shadow: 2px 2px 2px #a3736720;
  text-align: center;
  margin-top: 20px;
}

.credit-box {
  width: 95%;
  min-height: 200px;
  background-color: white;
  text-align: center;
  border: 10px solid;
  border-image: url('/images/deco/borde1.png') 150 repeat;
  border-image-outset: 10px;
  margin: 10px auto !important;
}


.characters {
  width: 90%;
  height: 210px;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: white;
  border: 1.5px dashed #fb9dd4;
  border-radius: 15px;
  padding: 10px;
  position: relative;
  text-align: center;
  margin: 10px auto !important;
}

.characters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  position: absolute;
  left: 0;
  right: 0;
  padding: 0 12px;
  overflow-y: auto;
  box-sizing: border-box;
  z-index: 0;
}

.characters-grid img {
  width: 100px;
  border-radius: 15px;
}

.container {
  position: relative;
  width: 100px;
}



.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #ffd6ee;
  border-radius: 15px;
}

.container:hover .overlay {
  opacity: 1;
  transition: 0.3;
}

.text {
  font-family: 'rainy hearts';
  color: white;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

/*------------------------------------------------------------------*/
/*----MUSIC----*/
/*------------------------------------------------------------------*/

.music-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  position: absolute;
  left: 0;
  right: 0;
  padding: 0 12px;
  overflow-y: auto;
  box-sizing: border-box;
  z-index: 0;
}

iframe {
  width: 250px;
  border-radius: 10px;
  border: none;
}

/*-----------AESTHETICS--------------*/

.aes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  position: absolute;
  left: 0;
  right: 0;
  padding: 0 12px;
  overflow-y: auto;
  box-sizing: border-box;
  z-index: 0;
}

.aes-grid img {
  width: 135px;
  border-radius: 15px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,0.5);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 400px;
}