body {
    margin: 0;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    overflow-x: hidden;
}


@font-face {
    font-family: 'Arthury';
    src: url('../fonts/Arthury.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'Artmy';
    src: url('../fonts/Artmy_Ornament.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gothica-B';
    src: url('../fonts/Gothica-BoldOblique.ttf') format('truetype');
    font-weight: bold;
    font-style: oblique;
}

@font-face {
    font-family: 'gotham';
    src: url('../fonts/Gotham.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Bukhari';
    src: url('../fonts/Bukhari_Script.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Estilos para el loader */

  /* Ocultar el contenido hasta que la página cargue */
  #content {
    display: none;
  }

  #loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-size: 2em;
    color: #333;
    transition: opacity 1s ease-in-out; /* Transición suave */
    overflow: hidden;
    
}

#loader.hidden {
    opacity: 0;
    pointer-events: none; /* Evita que siga interfiriendo después de ocultarse */
}  

#loader img{  
    max-width: 100%;
    max-height: 40vh;
    position: absolute;
    bottom: 0;
}

#loader p{
    width: 90%;
    position: absolute;
    font-family: 'Bukhari', sans-serif;
    font-size: 1em;
    text-shadow: 9px 5px 12px black;
    color: #000;
}

