<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* TEST */
.big-space{
    width: 100vw;
    height: 100vh;
    position: relative;
}
.little-square{
    width: 200px;
    height: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    background: url(../mars/mars-img/desktop-001.jpg);
}
/* MARS */
.mars-container{
    position: fixed;
    background-color: black;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}
.canvas{
    position: relative;
}
.mars-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: none;
}
.mars-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mars-frame{
    position: relative;
    width: 100vw;
    height: 100vh;
}

.mars-frame video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}</pre></body></html>