@charset "UTF-8";

body
{
    margin: 0;
    padding: 0;
    overflow: scroll;

}

h3{
    top:0;
    right: 0;
    z-index: 3;
    position: absolute;
    text-align: right;
    font-size: 3em;
    font-family: 'DotGothic16', sans-serif;
    color: red;
    text-transform: uppercase;


}
#text1 {
    z-index: +3;
    position: absolute;
    top: 0;
    right: 0;
    text-align: right;
    font-size: 3em;
    font-family: 'DotGothic16', sans-serif;
    color: red;
    text-transform: uppercase;
    cursor: pointer;
}
#text1 span{
    transition: 0.3s;
}
#text1:hover 
{
    margin-top: 0px;
    margin-left: 0px;
}       
#text1:hover span
{
    color:#f1f1f1f1;
    text-shadow: 0 0 10px #f1f1f1f1;
    text-shadow: 0 0 20px #f1f1f1f1;
    text-shadow: 0 0 40px #f1f1f1f1;
    text-shadow: 0 0 80px #f1f1f1f1;
    text-shadow: 0 0 120px #f1f1f1f1;
    text-shadow: 0 0 160px #f1f1f1f1;

}

@media screen and (max-width:600px){
    #text1{
        font-size: 2em;
    }
    
}


#text {
    z-index: +3;
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: right;
    font-size: 3em;
    font-family: 'DotGothic16', sans-serif;
    color: red;
    text-transform: uppercase;
    cursor: pointer;
}
#text span{
    transition: 0.3s;
}
#text:hover 
{
    margin-top: 0px;
    margin-left: 0px;
}       
#text:hover span
{
    color: #f1f1f1f1;
    text-shadow: 0 0 10px #f1f1f1f1;
    text-shadow: 0 0 20px #f1f1f1f1;
    text-shadow: 0 0 40px #f1f1f1f1;
    text-shadow: 0 0 80px #f1f1f1f1;
    text-shadow: 0 0 120px #f1f1f1f1;
    text-shadow: 0 0 160px #f1f1f1f1;

}
@media screen and (max-width:600px){
    #text{
        width: 100px;
        height: 50px;
        top: 0;
        left: 0;
        text-align: left;
        font-size: 2em;
    }
    
}

section
{
    z-index: +1;
    top: 10px;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    font-family: 'DotGothic16', sans-serif;
    color: red;
}
section .scroll
{
    z-index: +1;
    width: 100%;
    display: flex;
}
section .scroll div
{
    z-index: +1;
    font-size: 2em;
    white-space: nowrap;
    font-weight: 900;
    text-transform: uppercase;
    animation: animate 3s linear infinite;
    animation-delay: -10s;
}
section .scroll div:nth-child(2)
{
    animation: animate2 3s linear infinite;
    animation-delay: -5s;
}
@keyframes animate
{
    0%
    {
        transform: translateY(0);
    }
    100%
    {
        transform: translateY(-100%);
    }
}
@keyframes animate2
{
    0%
    {
        transform: translateY(-100%);
    }
    100%
    {
        transform: translateY(-300%);
    }
}

  

.video
{
    position: absolute;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    object-fit: cover;
    align-items: left;
}
.video video
{
    position: absolute;
    top: 0;
    width: 100%;
    height: auto;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    object-fit: cover;
    opacity: 0.95;
   
}
@media screen and (max-width: 2000px){
    body {
        z-index: -1;
        opacity: 0.9;

    }
    .video{
        top: 0;
        left: 0;
    }
   

}

@media screen and (max-width: 1700px){
    body {
        background-color: bisque;
        opacity: 0.9;
    }
    .video{
        top: 0;
        left: 0;
    }
}
@media screen and (max-width: 1400px){
    body {
        background-color: blue;
        opacity: 0.9;  
    } 
    section{
        display: none;
    }
}
@media screen and (max-width: 1000px){
    body {
        background-color: rgb(255, 0, 0);
        opacity: 0.9;
       
  
    } 
}
.texte
{
    width: 90vw;
    height: 90vh;
    box-sizing: border-box;
    object-fit: contain;
    overflow: scroll;
}
p1{
    z-index: 2;
    position: fixed;
    text-align: justify;
    font-size: 1em;
    font-family: 'Space Mono', monospace;
    top: 15vh;
    left: 30vw;
    right: 30vw;
    bottom: 5vh;
    color: #f1f1f1;
    
}
@media screen and (max-width: 1700px){
    p1 {
        left: 30vw;
        right: 30vw;
        font-size: 1em;
        
    }
}
@media screen and (max-width: 1400px){
    p1 {
        left: 25vw;
        right: 25vw;
        font-size: 1em;
        
    

    }
}
@media screen and (max-width: 800px){
    p1 {
        left: 10vw;
        right: 10vw;
        font-size: 1em;
        
    

    }
}

section
{
    z-index: 1;
    top: 50%;
    left: 50%;

}



@keyframes flip
{
    0%
    {
        transform: translate(-50%,-50%) perspective(200px) rotateX(0deg) rotateY(0deg);
    }
    50%
    {
        transform: translate(-50%,-50%) perspective(200px) rotateX(-180deg) rotateY(0deg);
    }
    100%
    {
        transform: translate(-50%,-50%) perspective(200px) rotateX(-180deg) rotateY(-180deg);
    }

}
