body {
    background-color: #1a202c;
    color: #e2e8f0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#contact {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.container {
    max-width: 600px;
    padding: 20px;
    background-color: #2d3748;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

h2 {
    color: #e67e22;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #68d391;
}

.contact-item a {
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #e67e22;
}

.text-xl {
    font-size: 1.25rem;
}

section {
    animation: fadeIn 0.5s ease-in-out both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}