html, body {
      margin: 0;
      height: 100%;
      overflow: hidden;
      cursor: grab;
      background-color: #270B3B;
    }

    #viewport {
      width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
      background: #270B3B;
    }

    #world {
      position: absolute;
      width: 2000px;
      height: 2000px;
      background-size: 40px 40px;
      background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
      transform: translate(0px, 0px);
    }

    .item {
      position: absolute;
      width: fit-content;
      height: fit-content;
      background: transparent;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-family: sans-serif;
      font-size: 30px;
      user-select: none;
    }

    .item:hover{
        color:  rgba(249, 178, 51,1);
        text-decoration: underline;
    }

.itemImage{
    position: absolute;
      border-radius: 12px;
      color: white;
      font-family: sans-serif;
      font-size: 18px;
      user-select: none;
}

.itemAudio{
    position: absolute;
      border-radius: 12px;
      color: white;
      font-family: sans-serif;
      font-size: 18px;
      user-select: none;
}

#disclaimerCont{
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.8);
    /*overflow-y: auto;*/
    z-index: 300;
}

#imagenDisclaimer{
    min-height: 80vh;
    height: calc(var(--vh) * 70);;
}

#parrafosDisclaimer{
    position: absolute;
    top: 4em;
    right: 2em;
    width: 30%;
}

.botonDisclaimer{
    border:2px solid white;
    cursor: pointer;
    padding: 0.3em;
    font-weight: 650;
    width: fit-content;
}

#btD2{
    margin-top: 0.5em;
}

.botonDisclaimer p{
    margin: 0;
}


#buscadorC{
    background-color: rgba(39, 11, 59, 0.95);
    border-radius: 10px;
    padding: 0px 20px 20px 20px;
    cursor: pointer;
    z-index: 15;
    transition: background-color 0.3s ease;
}

#textBuscarC{
    color: white;
    font-weight: 600;
    font-size: 80px;
    position: relative;
}

#buscarP{
    margin: 0;
}

#buscador{
    height: 3em;
    border-radius: 0px;
    border: none;
    padding: 0.5em;
    border-bottom: white solid 1px;
    background-color: rgba(255,255,255,0.2);
    width: 100%;
    box-sizing: border-box;
}



#menu{
    margin-right: 2em;
    color: white;
    font-weight: 600;
    font-size: 15px;
    gap:1em;
    width: fit-content;
    flex-direction: row;
    justify-content: end;
}

#nav{
    height: 4em;
    width: 100%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position:relative;
    color: #676767;
    z-index: 12;

}

#name{
    margin-left: 2em;
    color: white;
}

.popUpDataContainer{
    display: flex;
    font-size: 12px;
    line-height: 1.2em;
    padding-top: 1em;
    padding-bottom: 3em;
}

.popUpDataContainer p {
    margin: 0;
}

.verticalBar{
    width: 0.1em;
    background-color:white;
    margin: 0 1em 0 0;
}

.navItem:hover{
    cursor: pointer;
    color: white;
}

.fullPage{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fullPage img{
    width: 100%;
    z-index: 101;
}

.fullPage.visible {
    pointer-events: none;
    opacity: 1;
}

#fullPageOverlayImg {
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 0;
    transform: scale(1.04);
}

.fullPage.visible #fullPageOverlayImg {
    opacity: var(--fullpage-opacity, 1);
    transform: scale(1);
}



.fullPageBuscar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fullPageBuscar img{
    width: 100%;
    z-index: 11;
}

.fullPageBuscar.visible {
    pointer-events: none;
    opacity: 1;
}


#fullPageOverlayImgBuscar {
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 0.4;
    transform: scale(1.04);
}

.fullPage.visible #fullPageOverlayImgBuscar {
    opacity: 1;
    transform: scale(1);
}




#infoAcerca{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    /*width: 90%;
    height: fit-content;
    min-height: 90%;*/
    background-color: white;
    border: 1px solid #CCCCCC;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 15;
    padding: 5%;
    overflow-y: auto;
}

#innerInfoAcerca{
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#closeAcerca{
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

#pantallaBuscar{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: white;
    z-index: 20;
    overflow-y: auto;
}

#buscadorCont {
    position: relative;
}

#buscadorCont img{
    position: absolute;
    top: 100%;
    left: 5px;
    transform: translateY(-50%);
    height: 200%;
}


#buscadorCont2{
    white-space: nowrap;
    height: 40px;
    width: 85%;
    color: #E4E4E4;

}
#buscador2{
    background-color: #E4E4E4;
    border: none;
    padding: 3px 3px 3px 30px;
    width: 100%;
    align-items: center;
    box-sizing: border-box;
    height: 100%;
}

#buscador2:focus {
  border: none;
  outline: none;
}

#botonBuscar{
    background-color: #FF6801;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 10px 3px 10px;
    width: 15%;
    box-sizing: border-box;
    cursor: pointer;

}

#botonBuscar p {
    margin: 0;
}

#nameBuscar{
    position: absolute;
    top: 20px;
    left: 20px;
}

#closeBuscar{
    position: absolute;
    top: 1.2em;
    right: 3%;
}

#titleContBuscar{
    display: flex;
    align-items: center;
    gap: 1em;
    padding: 1em;
}

#searchTerm{
    padding: 0.2em 0.5em 0.2em 0.5em;
    font-size: 14px;
    background-color: #E6E6E6;
    width: fit-content;
    flex-basis: auto;
}

#searchTerm p{
    margin: 0;
    font-weight: 650;
    width: fit-content;
}

.resultItem{
    display: flex;
    gap: 1em;
    padding: 0.5em;
    font-size: 14px;
}

.resultTitle{
    font-size: 11px;
    font-weight: bold;
    padding: 1em;
}

.zones{
    width: 50%;
}

#lupaBuscar{
    position: absolute;
    top: 5px;
    left: 5px;
    width: 15px;
    height: 15px;
}


@media (min-height: 1500px){
    #world{
        width: 3000px;
        height: 3000px;
    }
    #menu{
        font-size: 24px;
    }
    

    .itemAudio{
        font-size: 24px;
        width: 500px;
        height: fit-content;
    }
    .itemAudio:nth-child(1){
        width: fit-content;
        height: fit-content;
    }
    .itemAudio img{
        width: 120px;
        height: 120px;
    }


    .itemImage{
        font-size: 24px;
        width: fit-content;
        height: fit-content;
    }
    .itemLink{
        width: fit-content;
        height: fit-content;
    }
    .itemLink img{
        width: 500px;
    }
    .popUpDataContainer{
        width: 500px;
        font-size: 24px;
        padding-top: 2em;
    }
    .item{
        font-size: 44px;
    }
} 




@media (max-width: 1100px) {

    #cont34{
        width: 70% !important;
    }
    .zones{
    width: 70%;
}

    
}


@media (max-width: 900px) {
    /*#textBuscarC {
        font-size: 100px;
    }*/

    #botonBuscar {
        font-size: 1.2rem;
        padding: 0.75rem 1rem;
    }

    #botonBuscar p {
        font-size: 1rem;
    }

    #nav {
        height: 5rem;
        padding: 0 1rem;
    }

    #menu {
        font-size: 18px;
        gap: 1.5em;
    }

    .item {
        font-size: 36px;
    }

    .itemImage img {
        width: 220px;
    }

    /*#buscarP {
        font-size: 30px;
    }*/
}

@media (max-width: 600px) {
    
    #cont34{
        width: 90% !important;
    }
    .zones{
    width: 90%;
}
    html, body {
        cursor: default;
    }

    /*#textBuscarC {
        font-size: 120px;
    }*/

    #botonBuscar {
        font-size: 1.4rem;
        padding: 1rem 1.5rem;
    }

    #botonBuscar p {
        font-size: 1.1rem;
    }

    #menu {
        font-size: 20px;
        gap: 2em;
    }

    .item {
        font-size: 42px;
    }

    .itemImage img {
        width: 240px;
    }

    #buscador {
        height: 3.5em;
    }
}


