@import "tailwindcss";

body {
    background-color: #fffbf1;
    margin: 0;
    height: 100vh;
}

.centered-page {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.logo {
    width: 320px;
    height: auto;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}