* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: Arial, sans-serif; */
    color: #333;
    background-color: black;
    height: 100vh;
}

/* Allow scrolling on specific pages */
body.scrollable {
    height: auto;
}


.window {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* contain: layout style */
}

.glass {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.grain {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    z-index: 2;
}

.glow {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: auto;
    z-index: 3;
/* 
  -webkit-mask-image: url("/jaclu-window/JACLU_DESIGNS_MASK.png");
  mask-image: url("/jaclu-window/JACLU_DESIGNS_MASK.png"); */
  /* -webkit-mask-size: cover;
  mask-size: cover; */
  /* -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center; */
}

.glow path {
    opacity: 1;
    /* transition: opacity 0.2s ease-in-out; */
    /* will-change: opacity, visibility; */
}

.small-text {
    font-size: 14px;
    font-family: 'Isenheim Regulier', serif;
    color: #FFFDD0;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: min(55%, 500px);
    max-width: 400px;
    text-align: left;
    width: 100%;

}

.title-container {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    background-color: black;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    pointer-events: none;
    align-items: center;
}

.jaclu-title {
    font-size: min(24vw, 16vh);
    letter-spacing: 2px;
    color: black;
    font-family: 'Isenheim';
    z-index: 1;
    justify-content: center;
}

@font-face {
    font-family: 'Unifraktur-Regular';
    src: url('/fonts/UnifrakturMaguntia-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Optimize font loading */
}

@font-face {
    font-family: 'Isenheim';
    src: url('/fonts/Isenheim_Regulier.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Optimize font loading */
}

@font-face {
    font-family: 'Unifraktur-Cook';
    src: url('/fonts/UnifrakturCook-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Optimize font loading */
}

@font-face {
    font-family: 'Facade-Sud';
    src: url('/fonts/Facade-Sud.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Optimize font loading */
}
@font-face {
    font-family: 'BerlinFraktur-24';
    src: url('/fonts/BerlinFraktur-24.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Optimize font loading */
}

a {
    color: #ff0000;
    text-decoration: none;
}

a:hover {
    color: #ffffff;
}


