
body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
}

h1 {
    margin-bottom: 20px;
    font-size: 2.5em;
    color: #00ffcc;
    text-shadow: 0 0 10px #00ffcc;
}

.contact-card {
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: scale(1.05);
}

.contact-card h2 {
    margin-top: 0;
    font-size: 1.8em;
    color: #00ffcc;
    text-shadow: 0 0 10px #00ffcc;
}

.contact-card a {
    color: #00ffcc;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: #ffffff;
}

@media (max-width: 600px) {
    .contact-card {
        width: 90%;
    }
}