/* styles.css */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #60c3c3, #ffbf69, #ff6fbf);
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    color: #ffffff;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: textBounce 1.5s ease infinite alternate;
}

@keyframes textBounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
}

button {
    font-size: 1rem;
    background: #ffdd57;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

button:hover {
    background: #ffc107;
    transform: scale(1.05);
}

button img {
    width: 20px;
    height: 20px;
}
