body{
    max-width: 100%;
    height: 100vh;
}

/* CURSOR */
.cursor {
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
    z-index: 89;
    opacity: 0;
    visibility: hidden; 
    transition: opacity 0.4s ease, visibility 0.4s ease; /* Smooth transition */
    filter: invert(1);
    mix-blend-mode: difference;
}
.cursor__text{
    font-size: 0.8rem;
    padding: 0.2rem;
}

/* FRAME */
#frameInfo{
    position: fixed;
    bottom: 3vh;
    z-index: 86;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    display: flex;
    text-transform: uppercase;
    filter: invert(1);
    mix-blend-mode: difference;
}
.frameInfoArrow{
    font-size: 0.7rem;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    /* align-self: center; */
}
#frameInfoText{
    height: 1rem;
    justify-content: center;
    align-items: center;
}



/* CONTENT */
section {
    height: 100%;
    width: 100%;
    top: 0;
    position: fixed;
    visibility: hidden;
  
    .outer,
    .inner {
      width: 100%;
      height: 100%;
      overflow-y: hidden;
    }
  
    .bg {
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      height: 100%;
      width: 100%;
      top: 0;
      background-size: cover;
      background-position: center;
  
      h2 {
        z-index: 2;
      }
  
      .clip-text {
        overflow: hidden;
      }
    }
    .discoverMoreTag{
        position: fixed;
        top: 3vh;
        z-index: 2;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
        display: flex;
        visibility: hidden;
    }
  }


  /* SECTION 1 - VOID */
    .first {
        .bg {
            background-color: white;
        }
    }
    #Void {
        display: flex;
        flex-direction: column;
        justify-content: center;
        font-size: 4vw;
        font-size: max(30px, min(4vw, 45px)); 
        font-size: clamp(30px, 4vw, 45px);
    }
    #VoidTitle {
        display: flex;
        justify-content: center;
        font-size: 1.1em;
        width: 100vw;
        margin-bottom: -0.3em;
    }
    .VoidTitleDec {
        padding: 0.5em;
        font-size: 0.5em;
        align-self: center;
    }
    .VoidTitleMain{
        display: flex;
        justify-content: center;
    }
    #VoidSubtitle{
        font-size: 0.4em;
        align-self: center;
        letter-spacing: 0.1em;
    }

  /* SECTION 2 - THE CORE */
    .second {
        .bg {
            background-image: url("../links/theCore_background.jpg");
            pointer-events: auto;
        }
    }
    #TheCore{
        display: flex;
        flex-direction: column;
        justify-content:end;
        align-items: center;
        height: 50vh;
    }

  /* SECTION 3 - TAXONOMY */ 
    .third {
        .bg {
            background-color: rgb(255, 255, 255);
        }
    }
    #Taxonomy{
        display: flex;
        flex-direction: column;
        justify-content:end;
        align-items: center;
        height: 50vh;
    }
    #TaxonomyImage{
        
        height: clamp(100px, 30VH, 300px);
        width: clamp(100px, 30vh, 300px);
        margin-bottom: 50px;
    }
  /* SECTION 4 - Limes Fossil */ 
    .fourth {
        .bg {
            background-image: url("../links/limesFossil_background.jpg");
            pointer-events: auto;
        }
    }
  /* SECTION 5 - INCOMING */ 
    .fifth {
        .bg {
            background-color: rgb(0, 0, 0);
        }
        color: rgb(255, 255, 255);
    }
/* AUTHOR : TIM LESELLIER - tim.lesellier@rennes.archi.fr */