.preVue-container{
    height: 100vh;
    width: 100vw;
    overflow: hidden; 
    display: flex;
    justify-content: center;
}
.preVue-left{
    height: 100%; 
    width: 50%; 
    display: flex; 
    
    align-items: stretch;
}
.preVue-right{
    height: 100%; 
    width: 50%; 
    display: flex; 
    align-items: stretch;
    justify-content: end; 
}
.preVue-background{
    transition: width 2s; 
    background-color: white; 
    width: 100%;
}
.preVue-content-container{
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    position: fixed; 
    visibility: hidden;
    height: 100vh;
    width: 100vw;
    top: 0; 
    left: -50vw; 
    transition: left 2s;
}
.preVue-img-background{
    width: 110vw;
}
.preVue-img{ width:30vw }
.preVue-text{
    margin-top: 5vh; 
    font-weight: 600; 
    font-size: 2.5vw; 
    color: #FFC9A5;
    transition: color 2s;
    font-family: Rubik,sans-serif;
}
.preVue-body{
    margin: 0; 
    height: 100vh;
}
.preVue-loader{margin-top: 5vh;}
@media only screen and (max-width: 800px) {
    .preVue-img{ width:60vw }  
    .preVue-text{
        max-width: 87vw;
        font-size: 4vw;
    }
    .preVue-img-background{
        width: unset;
        height: 100vh;
    }
}
@media only screen and (max-width: 450px) {
    .preVue-img{ width:80vw }  
    .preVue-text{
        max-width: 87vw;
        font-size: 6vw;
    }
}