
body {
    margin: 0;
    font-family: 'Roboto', 'Montserrat', sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #007BFF, #6F00FF);
    color: #333;
}

header {
    padding: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2.5rem;
    color: #fff;
    transform: skewX(-5deg);
    animation: neonGlow 2s ease infinite alternate;
}

@keyframes neonGlow {
    from {
        text-shadow: 0 0 10px #fff, 0 0 20px #007BFF, 0 0 30px #00fff0, 0 0 40px #0ff;
    }
    to {
        text-shadow: 0 0 20px #fff, 0 0 30px #ff00ff, 0 0 40px #00ff00, 0 0 50px #ff0;
    }
}

.container {
    display: grid;
    gap: 20px;
    padding: 40px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transform: skewX(-1deg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
    transform: skewX(1deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.card img {
    max-width: 100%;
    border-radius: 10px;
}

.card h3 {
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
}

.card p,
.card ul {
    color: #eee;
}

footer {
    padding: 20px;
    text-align: center;
    background-color: #222;
    color: #888;
}

@media only screen and (min-width: 768px) {
    .card h3 {
        font-size: 1.5rem;
    }
}

@media only screen and (min-width: 1024px) {
    header {
        font-size: 1.2rem;
    }
}

