@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.alert-container img {
    width: 150px;
    margin: 10px;
    animation: float 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.25), 0 0 15px rgba(255, 255, 255, 0.5);
    }
    50% {
        box-shadow: 15px 15px 25px rgba(0, 0, 0, 0.35), 0 0 25px rgba(255, 255, 255, 0.75);
    }
}

.alert-container img {
    animation: float 5s ease-in-out infinite, glow 5s ease-in-out infinite;
}



.alert {
    background-color: #000000; /* Black background for contrast */
    color: #fff; /* White text */
    padding: 10px 20px;
    font-family: 'Windows95', sans-serif;
    position: relative;
    cursor: pointer;
    border: 2px solid #fff; /* Subtle white border */
    text-decoration: none;
    transition: all 0.3s ease;
    user-select: none;
    display: inline-block;
    animation: subtlePulse 2s infinite alternate; /* Apply the subtle pulse animation */
}

/* Subtle Glow on Hover */
.alert:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.9),
                0 0 20px rgba(255, 255, 255, 0.9);
}

/* Active/Click Effect */
.alert:active {
    transform: translateY(1px); /* Mimic button press */
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.8); /* Inner shadow for depth */
}


@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
    }
}
