body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center;
}

header {
    background-color: #333;
    color: white;
    padding: 20px;
    font-size: 24px;
    text-shadow: 0px 0px 10px #00ff00; /* Green glow effect */
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #444;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

nav ul li {
    display: inline;
    padding: 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 10px 15px;
}

nav ul li a:hover {
    background-color: #555;
    border-radius: 5px;
}

.hero {
    background: url('your-image.jpg') center/cover no-repeat;
    color: white;
    padding: 100px 20px;
    text-align: center;
    text-shadow: 0 0 10px #00ff00;
}

.hero .btn {
    background: #00ff00;
    padding: 10px 20px;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    display: inline-block;
    margin-top: 10px;
}

.about, .skills, .projects, .contact {
    padding: 50px;
    text-align: center;
}

.skills {
    background: #fff;
}

.skill-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.skill {
    background: #333;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
}

.projects {
    background: #f4f4f4;
}

.project {
    background: white;
    padding: 20px;
    margin: 10px auto;
    width: 80%;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}

.contact {
    background: #333;
    color: white;
}

footer {
    background: #222;
    color: white;
    padding: 10px;
    text-align: center;
}
