/* Reset some default styles */
body, h1, h2, h3, p {
    margin: 0;
    padding: 0;
}

/* Basic styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    padding: 20px; /* Add padding to the body */
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    text-align: center;
    padding: 0; /* Remove default padding */
}

nav li {
    display: inline;
    margin: 0 10px; /* Adjust margin */
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

/* Update text color for the hero section */
#hero {
    background-image: url('hero-background.jpg'); /* Replace with your hero image */
    background-size: cover;
    text-align: center;
    padding: 100px 0;
    color: #333; /* Change text color to a darker color */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px; /* Add padding to the hero section */
}

/* Style the tagline */
.tagline {
    font-size: 20px;
    margin-top: 10px;
}

/* Style the coding person image */
.coding-image img {
    max-width: 100%;
    border-radius: 50%; /* Create a circular image */
    border: 2px solid #fff; /* Add a white border to the image */
}

#hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* Style the card */
.card {
    background-color: #fff;
    padding: 20px;
    margin: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px; /* Add padding to the card */
}

.card img {
    max-width: 100%;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px; /* Add margin to the footer */
}
