.Welcome {
    position: fixed;
    display: flex;
    font-size: 50px;
    width: 100%;
    height: 100%;
    background: rgba(251, 236, 200, 0);
    z-index: -5;
}

.Welcome p{
    margin:0;
}

.mobile-welcome-variant {
    display: none;
}


@media (max-width: 768px) {

    .Welcome {
        position: relative;
        display: flex;
        padding-top:70px;
        font-size: 50px;
        width: 100%;
        height: 100%;
        background: rgba(251, 236, 200, 0);
        z-index: -5;
    }

    .Welcome .left-box {
        display: none;
    }

    .Welcome .right-box {
        display: none;
    }

    .mobile-welcome-variant {
        display: flex;
        flex-direction: column;
        position: relative;
        height: 100%;

    }

    .mobile-welcome-variant p#up {
        position:relative;
        font-size: 8vw;
        top: 4vh;
        text-align: center;
        font-weight: 900;
        
        color: rgb(87, 130, 183);
        line-height: 14vw;
        width:100%;
        margin:0;
    }

    .mobile-welcome-variant p#end {
        position:relative;
        font-size: 8vw;
        top: -12vh;
        text-align: center;
        font-weight: 900;
        color: rgb(87, 130, 183);
        line-height: 14vw;
        width:100%;
        margin:0;
        animation: shimmer_bobbing 0.7s infinite;
    }

    .mobile-welcome-variant p#center {
        position:relative;
        top: -14vw;
        font-size: 13vw;
        text-align: center;
        font-weight: 900;
        color: rgb(87, 130, 183);
        line-height: 14vw;
        margin: auto 0;
    }




}