body {
    margin: 0;
    padding: 0;
    background-color: #ADD8E6; /* Sky blue */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
}

#text-container {
    position: absolute;
    top: 20px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Shadow for better visibility */
    z-index: 1; /* Ensures it's above other elements */
}

#duck-container {
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

#duck-container:active {
    transform: scale(1.1); /* Makes the duck "pop" when clicked */
}

#duck {
    width: 200px;
    height: auto; /* Maintains aspect ratio of the GIF */
    display: block;
}
