main{
    padding: 0;
    overflow-y: hidden;
}

.quadrillage{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.horizontal{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    position: sticky;
    
}
.vertical{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: sticky;
    
}

.Hline{
    width: 100%;
    height: 2px;
    border-top: 1px dashed black;
    opacity: 20%;
    
}
.Vline{
    height: 100%;
    width: 2px;
    border-left: 1px dashed black;
    opacity: 20%;
}

.moving{
    position: absolute;
    top: 85%;
    left: 90%;
}

.container{
    position: relative;
    top: 15px;
    left: 15px;
    height: calc(100% - 30px);
    width: calc(100% - 30px);
}

script{
    z-index: 0;
}


video{
    position: absolute;
    opacity: 0%;
    
}

#asciiContainer{
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}

#asciiContainer div{
    object-fit: cover;
    height: 100%;
    
}

.textContainer{
    width: 33%;
    height: auto;
    position: absolute;
    left: 15px;
    top: 15px;
    background-color: var(--color2);
    
}

.textContainer p{
    padding: 15px;
    color: var(--color1);
    line-height: 150%;
}