@font-face {
    font-family: 'Space_Mono_ita';
    src: url('../assets/font/SpaceMono-Italic.ttf') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Space_grot';
    src: url('../assets/font/SpaceGrotesk-Regular.otf') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Space_Mono';
    src: url('../assets/font/SpaceMono-Bold.ttf') format('woff2');

    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Space_Mono_T';
    src: url('../assets/font/SpaceMono-SEM.otf') format('woff2');

    font-weight: normal;
    font-style: normal;
}

html, body {
    margin: 0;
    background-color: transparent ;
    overflow: hidden;
    scroll-behavior: smooth;
    
    font-family: 'Space_Mono';

    --textColor: rgb(0, 0, 255);
    
}

a{
    text-decoration: none;
    color: white;
    /* font-family: 'Space_Mono_ita'; */
    text-decoration: underline;
}




canvas{
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left:0 ;
    pointer-events: none;
    z-index: -1;
    transition: all 0.5s ease-in-out;
}

table{
    width: 100%;
    font-size: 1.2em;
    color: white;
    font-family: 'Space_Mono_T';
    margin: 0;
    margin-left: 10px;
}

tr{
   vertical-align: baseline;
}

td{
    padding-right: 10px;
}



.flexContainer{
    display: flex;
    width: 100%;
    height: 100%;
}

.menu{
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: transparent;
    transition: all .5s ease-in-out;
    width: 100vw;
    height: 100vh;
    opacity: 100%;
    background-color: white;
    margin: 0;
    filter: blur(0.6px) contrast(1000);
}

.logo{
    color: black;
    opacity: 51%;
    /* -webkit-text-stroke: .1px #00ff00; */
    font-family: 'Space_Mono_T';
    font-size: 6vw;
    line-height: .8em;
    margin: 10px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.menuList{ 
opacity: 100%;
font-family: 'Space_Mono_T';
color: var(--textColor);
font-size: 3vw;
margin: 0;
margin-left: 10px;
text-decoration: underline;
line-height: 1em;
list-style-type: none;
padding-left: 0;
margin-top: 0.5em;
}

.menuItem{
    cursor: pointer;
    width: fit-content;
    padding-bottom: 0em;
}

.subMenuItem{
    cursor: pointer;
    width: fit-content;

}

.menuItem:not(:last-child) { padding-bottom: 0.6em; }

.menuList:last-child{
    padding-bottom: 0;

}


.labeur{
    font-size: 2em;
    color: white;
    margin: 10px;
    margin-top: 0;
    font-family: 'Space_Grot';
}

.labeurIta{
    font-size: 1em ;
    color: white;
    margin: 10px;
    margin-top: 0;
    font-family: 'Space_Mono_Ita';
}

.sectionTitle{
    font-size: 4em;
    line-height: .9em;
    color: white;
    font-family: 'Space_Mono_T';
    margin: 0;
    margin-left: 10px;
}

.sTitle{
    font-size: 2.5em;
    color: white;
    font-family: 'Space_Mono_T';
    margin: 0;
    margin-left: 10px;
    line-height: 1em;
}

.accordion{
    color: white;
    font-family: 'Space_Mono_T';
    margin: 0;
    margin-left: calc(3ch - 10px);
    margin-right: 10px;
    padding-left: 10px;
    border-bottom: 1px solid white;
    border-left: 1px solid white;
    transition: 0.5s ease-in-out;
    line-height: 1em;
    padding: 10px;
}

.prime{
    border-left: none;
    margin-left: 10px; 
}

.inw{
    margin-left: 3ch;
}

.panel {
    padding: 0 18px;
    max-height: 0;
    transition: max-height 0.5s ease-in-out;
    overflow: hidden;
  }

  .active, .accordion:hover {
    background-color: white; 
    color: var(--textColor);
  }

.contentDiv{
    position: absolute;
    top: 0;
    background: var(--textColor);
    width: 50vw;
    height: 100vh;
    transition: all 0.5s ease-in-out;
    overflow-y: scroll;
}

.imgFull{
    width: calc(50% - 20px);
    margin: 10px;
}

.AudioContainer {
	margin: 75px auto;
	max-width: 500px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.audio-controls {
    position: fixed;
    bottom: 0;
    left: 0;
    width: calc(50vw - 20px);
    background-color: transparent;
    color: #fff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 10px;
}

        /* Play/Pause button using symbols */
        .play-pause-btn {
            background-color: transparent;
            color: var(--textColor);
            border: 6px solid var(--textColor);
            border-radius: 100%;
            padding: 10px 20px;
            text-transform: uppercase;
            font-size: 2em;
            cursor: pointer;
            transition: background-color 0.2s, color 0.2s;
            opacity: 100%;
        }

        .play-pause-btn:hover {
            background-color: var(--textColor);
            color: #fff;
        }

        .play-pause-btn:focus {
            outline: 2px solid #fff;
        }

        /* Progress bar */
        .progress-bar {
            flex-grow: 1;
            margin: 0 20px;
            height: 10px;
            border: 6px solid var(--textColor);
            background-color: #ffffff;
            position: relative;
            cursor: pointer;
        }

        .progress-filled {
            background-color: var(--textColor);
            height: 100%;
            width: 0%;
        }

        /* Timer */
        .timer {
            font-family: 'Space_Mono_T';
            color: var(--textColor);
            font-size: 1.5em;
            font-weight: bold;
        }

        /* Volume control */
        .volume-control {
            display: flex;
            align-items: center;
            padding: 10px;
        }

        .volume-control input[type="range"] {
            width: 100px;
            height: 3px;
            appearance: none;
            background: #fff;
            border: 6px solid var(--textColor);
            border-radius: 6px;
            outline: none;
            cursor: pointer;
        }

        .volume-control input[type="range"]::-webkit-slider-thumb {
            appearance: none;
            width: 20px;
            height: 20px;
            background: var(--textColor);
            border-radius: 20px;
            cursor: pointer;
        }

        .icon{
            height: 0.8em;
        }

        .st0 {
            fill: #0000ff;
            stroke: #0000ff;
            stroke-width: 33.3333;
            stroke-linejoin: round;
            stroke-miterlimit: 26.6667;
          }
          .st1 {
            fill: none;
            stroke: #0000ff;
            stroke-width: 33.3333;
            stroke-linecap: round;
            stroke-miterlimit: 26.6667;
          }

          .specImg{
            width: 50%;
          }

@media only screen and (max-width: 1000px){
    .timer{
        display: none;
      }

      .specImg{
        width: 70%;
      }
}
    
@media only screen and (max-width: 900px) {
    .contentDiv{
        width: 100vw;
    }
    .logo{
        opacity: 51%;
        font-size: 10vw;
    }
    .menuList{ 
        font-size: 6vw;
    }
    .labeur{
        font-size: 1.2em;
    }

    .inw{
        margin-left: 5ch;
    }
    table{
        font-size: 1em;
    }
    .sectionTitle{
        font-size: 3.4em;
    }

    .close {
        position: absolute;
        right: 15px;
        top: 10px;
        width: 32px;
        height: 32px;
        opacity: 1;
      }
      .close:hover {
        opacity: 1;
      }
      .close:before, .close:after {
        position: absolute;
        left: 15px;
        content: ' ';
        height: 44px;
        width: 6px;
        background-color: #ffffff;
        border-width: 2px solid rgb(0,255,0);
        z-index: 100000;
      }
      .close:before {
        transform: rotate(45deg);
      }
      .close:after {
        transform: rotate(-45deg);
      }
    
      .closeDiv{
        position: sticky;
        top: 0px;
        right: 0px;
      }
      .volume-control, .timer, .progress-filled, .progress-bar{
        display: none;
      }
      .specImg{
        width: 80%;
      }
}

@media only screen and (max-width: 600px){
    .logo{
        font-size: 14vw;
    }
    .menuList{ 
        font-size: 11vw;
    }

    .specImg{
        width: 100%;
      }

}

/* Secret Page */
#content {
    /* display: none; */
    height: 100vh;
    width: 100vw;
    overflow-y: scroll;
}
#error {
    display: none;
    color: red;
    display: none;
}

.passTitle{
    font-size: 2em; 
    text-align: center;
    line-height: .9em;
    padding: .5em;
}

#passDiv{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.passButton{
    text-align: center;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery img {
    width: 100%;
    max-width: 300px; /* Adjust the width as needed */
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}