body {
    font-family: sans-serif;
    background-color: #fdf4ff; /* fuchsia-50 */
    color: #5c0061; /* fuchsia-950 */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
    padding: 1rem;
}

.logo {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.button-container {
    display: flex;
    gap: 1rem;
}

.btn {
    background-image: linear-gradient(to right, #6c007c 0%, #c026d3 51%, #6c007c 100%);
    background-size: 200% auto;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 1.2rem;
    transition: background-position 0.5s;
}

.btn:hover {
    background-position: right center;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    .logo {
        width: 80px;
        height: 80px;
    }

    .button-container {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 80%;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}