﻿body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: linear-gradient( 180deg, #f8fafc 0%, #eef2f7 100% );*/
    font-family: Arial, Helvetica, sans-serif;
    color: #111827;
    background: linear-gradient(180deg, #090a0b 0%, #23262a 100%);
}


.landing {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
}


.landing-logo {
    opacity: 0;
    transform: translateY(-90px);
    animation: logoFadeIn 0.8s ease-out forwards;
    filter: drop-shadow(0 0 12px rgba(96, 165, 250, 0.25));
    width:70%;
}

.landing-slogan {
    opacity: 0;
    transform: translateY(90px);
    animation: sloganFadeIn 0.8s ease-out forwards;
    animation-delay: 0.7s;
    font-family: Quicksand;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #0ea5a4;
}

@keyframes logoFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sloganFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
