* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 1em;
    font-weight: normal;
    font-style: normal;
    text-decoration: none; 
}

@import url('https://fonts.googleapis.com/css2?family=Rubik+Mono+One&display=swap');

.step{
    height: 100dvh;
    width: 100vw;
}

.step-1{
    background-color: red;
    font-size: 5rem;
    line-height: 5rem;
    font-family: 'Rubik Mono One', monospace;
    word-spacing: -50px;
    display: flex;
    align-items: end;
}
.step-1 .container{
    height: calc(5rem*6);
    width: 100%;
    position: relative;
}
.step-1 .letter-spacing-tiny{
    letter-spacing: -20px;
}
.step-1 .desktop{
    display: block;
}
.step-1 .mobile{
    display: none;
}

@media screen and (max-width: 1400px) {
    .step-1 .desktop{
        display: none;
    }
    .step-1 .mobile{
        display: block;
    }
}


.step-1 .mask {
    position: relative;
    height: 5rem;
    overflow: hidden;
    outline: 1px transparent;
    font-family: 'Rubik Mono One', monospace;

}
  
.step-1 ul {
    position: absolute;
    top: 0;
    left: 0;
    list-style: none;
    white-space: nowrap;
    font-family: 'Rubik Mono One', monospace;
    text-wrap: wrap;
}
  
.step-1 .list {
    color: transparent;
    -webkit-text-stroke: 1px black;
}
  

.step-2{
    background-color: green;
    width: 400%;
	height: 100vh;
	display: flex;
	flex-wrap: nowrap;
}
.step-2 .panel{
    width: 100%;
}

.step-3{
    background-color: red;
}