.fade-in {
    animation: fadeIn 2s ease-in-out;
    color: #00ffcc; /* A techy neon green */
    font-family: sans-serif;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


.fredbear-gif {
    width: 300px; /* Adjust size */
    border: 3px solid #00ffcc; /* Techy neon border */
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.5); /* Glow effect */
    border-radius: 8px;
}
