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


body, html {
width: 100%;
height: 100%;
font-family: Arial, sans-serif;
font-weight: 400;
-webkit-font-smoothing: antialiased;
overflow: hidden;
background-color: white;
}

::selection {
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
  background-color: transparent;
  color: transparent;
}


@font-face {
    font-family: 'LCDMarion-Regular';
    src: url('./fonts/LCDMarion.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'BiberonSans';
    src: url('./fonts/BiberonSans.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Waldenburg';
    src: url('./fonts/KMR-Waldenburg-SemiCondensedBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'SNGangster';
    src: url('./fonts/GangsterSN-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Leif';
    src: url('./fonts/Leif-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

.main-page{
    overflow: hidden;
}

.menu{
    position: fixed;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-family: 'SNGangster';
    z-index: 10;
    color: white;
    mix-blend-mode: exclusion;
}

.menu .menu-item{
    position: relative;
}
#menuItemHome{
    margin-bottom: 10px;
}
#menuItemHome:hover{
    cursor: pointer;
}
#menuItemInfo{
    margin-top: 10px;
}

.menu .menu-item:hover{
    cursor: pointer;
}

#clock {
    font-family: 'SNGangster';
    font-size: 14px;
    text-align: end;
    position: fixed;
    right: 20px;
    top: 20px;
    color: white;
    mix-blend-mode: exclusion;
    z-index: 10;
}

.container {
    width: 100vw;
    height: 100vh;
    position: relative;
    z-index: 1;
    overflow: hidden;
}


.project {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
    font-size: 60px;
    opacity: 0;
    background-size: cover;
    background-position: center;
    font-family: 'SNGangster';
    overflow: hidden;
    background-color: white;
}

.project-title{
    position: fixed;
    text-align: center;
    text-transform: uppercase;
    width: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
    mix-blend-mode: exclusion;
    pointer-events: none;
}
#projectbiberonTitle{
    font-family: 'BiberonSans';
    text-transform: uppercase;
    z-index: 2;
}
#projectMarionTitle{
    font-family: 'LCDMarion-Regular';
    font-size: 15.6vw;
    text-transform: none;
    width: calc(100vw - 40px);
}

.project-info{
    font-size: 14px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    text-align: end;
    width: 220px;
    z-index: 2;
    color: white;
    mix-blend-mode: exclusion;
}

.project-tag{
    font-family: 'SNGangster';
    font-size: 14px;
    text-align: center;
    position: absolute;
    color: white;
    mix-blend-mode: exclusion;
    z-index: 2;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%)
}

.project.open {
    overflow-y: scroll;
    height: 100vh;
}
  
.project-content {
display: block; /* always visible */
position: relative;
font-size: 14px;
z-index: 1;
width: 100vw;
height: 100vh;
overflow: hidden;
}
  
.project.scrollable .project-content {
overflow-y: scroll;
max-height: 100vh;
}

.project.open .project-title{
    position: fixed;
}

/*BIBERON*/
#imageContainerbiberon1{
    width: 100vw;
    height: auto;
    display: flex;
    flex-direction: row;
}

#BB2, #BB9{
    width: 50vw;
    height: auto;
}
/*BIBERON*/

/*LESIG*/
#imageContainerLeSig1{
    width: 100vw;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

#LeSigLogo{
    width: 50vw;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
/*LESIG*/
  

.see-more{
    font-size: 14px;
    position: fixed;
    left: 20px;
    bottom: 20px;
    text-align: start;
    width: 200px;
    z-index: 2;
    color: white;
    mix-blend-mode: exclusion;
}


.project.active {
    opacity: 1;
}