* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0D0D0D;
    font-family: 'Arial', sans-serif;
    color: #00FF00;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    padding: 50px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.title {
    font-size: 3rem;
    margin-bottom: 40px;
    color: #00FF88;
    animation: fadeInTitle 2s ease-in-out;
}

.contact-card {
    background-color: #1E1E1E;
    border: 2px solid #00FF00;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 20px rgba(0, 255, 0, 0.5);
    animation: fadeInCard 1.5s ease-in-out;
    transition: transform 0.3s ease-in-out;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 15px;
}

.contact-item img {
    width: 48px;
    height: 48px;
    margin-right: 15px;
}

.contact-info h2 {
    color: #00FF88;
    font-size: 1.5rem;
}

.contact-info p {
    font-size: 1.2rem;
    color: #D4FFD4;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 0px 30px rgba(0, 255, 0, 0.8);
}

@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);
    }
}
