svg {
    fill: white;
    width: 30px;
}
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
/* Additional improvements */
.social-links a:hover {
    color: #1D4ED8; /* Blue color on hover for accessibility */
}
/* Enhance main content accessibility */
main {
    background: rgba(0, 0, 0, 0.5); /* semi-transparent background for readability */
    border-radius: 10px; /* rounded corners for a softer look */
}
.text-white {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6); /* Improve readability on video background */
}
/* Add responsiveness for mobile screens */
@media (max-width: 640px) {
    .social-links {
        padding: 0 1rem;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.25rem;
    }
}