*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: #f8fafc;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

.loader-container{
    animation: fadeOut 1s ease forwards;
    animation-delay: 2s;
}

.logo{
    width: 180px;
}

@keyframes fadeOut{
    to{
        opacity: 0;
        transform: scale(1.2);
    }
}