.stext{
    width: 100vw;
    height: 100vh;
    position:absolute;
    top: 0;
    left: 0;
    background-color: rebeccapurple;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: "Segoe UI";
    font-size: 10vh;
    transition: 1.5s;
    z-index: 99999999999999999999999;
    user-select: none;
    text-align: center;
}

.next_btn{
    background: rebeccapurple;
    padding: 2vh 5vh;
    display: inline-block;
    color: white;
    font-family: "Segoe UI";
    font-size: 4vh;
    border-radius: 2vh;
    text-decoration: none;
    position:absolute;
    bottom: 1vh;
    right: 1vh;
    transition:background-color 0.2s;
}
.next_btn:hover{
    background-color:rgb(68, 34, 102) ;
}