* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

header {
    background-color: #333;
    color: white;
    padding: 1rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background: url('path/to/your-image.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
}

section {
    padding: 2rem 0;
    text-align: center;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

ul li {
    font-size: 1.2rem;
    margin: 10px 0;
}

.project-card {
    background-color: #f4f4f4;
    margin: 20px 0;
    padding: 1rem;
    border-radius: 5px;
}

form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

form label {
    display: block;
    margin-bottom: 8px;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
}


.hero {
    background: url('me.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-photo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
}
