/* General Styles */
body {
    background: url('Images/REDCLOUD.gif') no-repeat center center fixed;
    background-size: cover;
    animation: storm 15s infinite alternate linear;
    color: white;
    font-family: Verdana;
    transition: opacity 0.5s ease-in-out;
}

/* Keyframe Animations */
@keyframes storm {
    0% { background-position: 0% 0%; }
    50% { background-position: 50% 50%; }
    100% { background-position: 100% 100%; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Classes */
.fade-in {
    animation: fadeIn 1s forwards;
}

.shadow {
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
}

.rounded {
    border-radius: 10px;
}

/* Navigation Styles */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

/* Grid Container Styles */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
}
