@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

*{
    box-sizing: border-box;
}
body{
    font-family: 'Roboto', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    width: 100vw;
    height: 100vh;
}
.background{
    background: url('../img/vegeta.jpeg') no-repeat center center/cover;
  
    position: absolute;
    top: -30px;
    left: -30px;
    width: calc(100vw + 60px);
    height: calc(100vh + 30px);
    z-index: -1;
    filter: blur(0);
}
.loading-text{
    font-size: 50px;
    color: #fff;
}