@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    color: white;
    font-family: 'Montserrat', sans-serif;
    background-color: #060606;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

#lava-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
}

body > *:not(#lava-canvas) {
    position: relative;
    z-index: 1;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#logo {
    width: 20%;
    height: auto;
    opacity: 0;
    animation: fadeInDown 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.tagline {
    font-size: 0.8rem;
    margin-top: 20px;
    opacity: 0;
    animation: fadeInDown 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.65s forwards;
}

#updates {
    font-size: 0.4rem;
    color: rgba(255, 255, 255, 0.556);
    opacity: 0;
}