﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    height: 100%;
    font-family: 'Segoe UI', sans-serif;
}

.splash-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #4a90e2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    z-index: 10;
    animation: fadeOut 2s ease-in-out 2.5s forwards;
}

    .splash-screen img {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
        animation: zoomIn 1.5s ease-in-out;
    }

    .splash-screen h1 {
        font-size: 2rem;
        animation: fadeInUp 1s ease-in-out;
    }

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
