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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, #0a0a0a, #1b1b1b);
    color: white;
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    animation: fadeIn 1.5s ease-in-out;
}

a {
    margin-top: 25px;
    padding: 12px 30px;
    background: #00eaff;
    color: black;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s;
    animation: slideUp 1.5s ease-in-out;
}

a:hover {
    background: #00bcd4;
    transform: scale(1.05);
}

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

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

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

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


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

    a {
        font-size: 1rem;

        padding: 10px 22px;
    }
}

.creator {
    position: absolute;
    bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
    color: #ccc;
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
}

.creator span {
    color: #00eaff;
    font-weight: 600;
}

@media (max-width: 600px) {
    .creator {
        font-size: 0.8rem;
        bottom: 15px;
    }
}