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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Google Sans', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #5b0fc9, #8e2de2, #c471ed);
    overflow: hidden;
}

.splash-container {
    text-align: center;
    color: white;
}

.logo {
    width: 140px;
    margin-bottom: 20px;
    animation: float 2s ease-in-out infinite;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

p {
    opacity: .8;
    margin-bottom: 30px;
}

.loader {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.loader span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    animation: bounce 1.2s infinite;

}

.loader span:nth-child(2) {
    animation-delay: .2s;
}

.loader span:nth-child(3) {
    animation-delay: .4s;
}

small {
    opacity: .8;
    letter-spacing: 1px;
}

@keyframes bounce {

    0%,
    80%,
    100% {
        transform: scale(.6);
        opacity: .5;
    }

    40% {
        transform: scale(1.2);
        opacity: 1;
    }

}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}