body {
    background-color: #121212;
    font-family: 'Arial', sans-serif;
    color: #00FF00;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.title {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInTitle 2s ease-in-out;
}

.skill-card {
    background-color: #1E1E1E;
    border: 2px solid #00FF00;
    border-radius: 10px;
    padding: 20px;
    margin: 15px;
    width: 300px;
    text-align: center;
    box-shadow: 0px 0px 20px rgba(0, 255, 0, 0.7);
    animation: fadeInCard 1.5s ease-in-out;
    transition: transform 0.3s ease-in-out;
}

.skill-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 30px rgba(0, 255, 0, 0.9);
}

h2 {
    color: #00FF88;
    margin-bottom: 10px;
}

p {
    font-size: 1rem;
    color: #D4FFD4;
}

@keyframes fadeInTitle {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInCard {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
