git mv style.css.txt style.css
git commit -m "Rename style file to style.css"
git push --set-upstream origin make-site-responsive

/* Mobile-friendly navigation */
nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

nav a {
    padding: 8px 12px;
    background-color: #f0f0f0;
    text-decoration: none;
    border-radius: 4px;
}

nav a:hover {
    background-color: #ddd;
}

/* For small screens: stack menu links */
@media (max-width: 600px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }
}

footer {
    background-color: #000; /* Black background */
    color: #ccc; /* Light gray text */
    padding: 20px;
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
}

footer a {
    color: #ccc;
    text-decoration: none;
}

footer a:hover {
    color: #fff; /* White on hover */
}

.footer-contact p {
    margin: 5px 0;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    padding: 20px;
    max-width: 1000px;
    margin: auto;
}

/* Navigation bar */
nav {
    background: #2c3e50;
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
}

nav a {
    color: white;
    padding: 8px 12px;
    text-decoration: none;
}

nav a:hover {
    background: #1abc9c;
    border-radius: 4px;
}

/* Responsive navigation */
@media (max-width: 600px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }
    nav a {
        width: 100%;
    }
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;   /* Same width for all */
    height: 40px;  /* Same height for all */
    border-radius: 50%;
    overflow: hidden;
}

.social-links img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Keeps aspect ratio */
}

.social-links i {
    font-size: 22px; /* Font Awesome icons size */
}


/* Footer styles */
footer {
    background-color: #000;
    color: #ccc;
    padding: 20px;
    text-align: center;
    font-size: 14px;
}

footer a {
    color: #ccc;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}


