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

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #e5e5e5;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.logo {
    width: 200px;
    margin-bottom: 40px;
    transition: transform 0.5s ease;
}

.logo:hover {
    transform: scale(1.1);
}

footer {
    position: fixed;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

footer p {
    font-size: 12px;
    color: #777;
}
