*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;

}
.bg{
    background: url(./car.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: calc(100vh + 30px);
    width: calc(100vw + 30px);
    position: absolute;
    left: -30px;
    top: -30px;
    z-index: -1;
    /* filter: blur(0px); */
   
}
.loading-text{
    font-family: sans-serif;    
    font-size: 50px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
   
}