@font-face {
    font-family: "Arges Extra Heavy";
    src: url("../fonts/Arges-ExtraHeavy.otf") format("opentype");
}

@font-face {
    font-family: "Helvetica Neue Lt";
    src: url("../fonts/HelveticaNeueLTStd-Md.otf") format("opentype");
}

/******************************/
/************ REST ************/
/******************************/

video{
    display:none;
}

input{
    z-index: 3;
}

button{
    z-index: 3;
}

body{
    margin:0;
    padding: 0;
}

canvas { 
    position:fixed; 
    top:0; left:0; 
    z-index:1; 
}

#content {
    position:relative; 
    z-index:2; 
    display:flex;
    width:90%;
    margin:auto;
    flex-direction: column;
    align-items: center;
    /* height:500px; */
    justify-content: space-between;
    height:92vh;
    min-height: 92vh;
}

@supports (-webkit-text-stroke: 1.3px white){
    h1 {
        -webkit-text-fill-color: rgba(255, 255, 255, 0); 
        -webkit-text-stroke-width: 1.3px;
        -webkit-text-stroke-color: rgb(255, 255, 255);
    }
}

svg{
    display:block;
    margin:auto;
    fill:none;
    stroke:white;
    stroke-width: 3.5px;
    width:100%;   
    max-height:15vh;
    margin-top:20px;
}

h1{
    font-family: 'Arges Extra Heavy', sans-serif;
    font-size:8em;
    letter-spacing: 0.1rem;
    margin:0;
    text-align: center;
    line-height: 80%;
    margin-top: 20px;
    color: rgb(255, 255, 255);
}

h2{
    font-family: 'Helvetica Neue Lt', sans-serif;
    font-size:0.7em;
    font-weight: 100;
    color:white;
    margin:0;
    margin-top: 3px;
    text-align: right;
}

#morceaux {
    font-family: 'Helvetica Neue Lt', sans-serif;
    color:white;
    text-align: center;
    /* align-self: flex-end; */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

ul{
    list-style: none;
    margin:auto;
    padding:0;
    flex:1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

#messages {
    font-family: 'Lora', serif;
    margin-left: 10px;
    text-align: left;
    line-height: 1.5em;
}

#messages li {
    margin-top: 10px;
}

li{
    transition: all 1s ease;
}

.current_title{
    font-size: 1.8em;
}

.small_title{
    font-size: .8em;
}

.smaller_title{
    font-size: .4em;
    color:rgba(255, 255, 255, 0.582);
}

.hidden_title{
    display: none;
}


/******************************/
/******* LOADING SCREEN *******/
/******************************/
#p5_loading {
    display: flex;
    flex-direction: column;
    margin:auto;
    align-items: center;
}

#p5_loading h1 {
    color: rgb(255, 255, 255);
    -webkit-text-fill-color: rgba(255, 255, 255, 0); /* Will override color (regardless of order) */
    -webkit-text-stroke-width: 1.3px;
    -webkit-text-stroke-color: rgb(0, 0, 0);
}

#p5_loading svg{
    stroke:black;
}

#p5_loading h2 {
    color:black;
}

#p5_loading img{
    image-rendering: pixelated;
    height: 25vh;
    margin-top: 10vh;
}

#p5_loading p{
    font-family: 'Helvetica Neue Lt', sans-serif;
}

   