.loading-screen{
    width:100%;
    height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    background:black;
}

.loading-logo{
    width:120px;
    animation: zoom 2s infinite;
}

.loading-text{
    color:white;
    margin-top:20px;
    letter-spacing:8px;
}

@keyframes zoom{
    0%{transform:scale(1);}
    50%{transform:scale(1.2);}
    100%{transform:scale(1);}
}