body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #111;
    color: #fff;
}

header {
    background: #000;
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

header h1 {
    display: inline-block;
    margin: 0;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #f39c12;
}

section {
    padding: 60px 20px;
    text-align: center;
}

#home {
    background: url('https://example.com/your-background-image.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: fadeIn 2s ease-in-out;
}

#home h2 {
    font-size: 3em;
    margin: 0;
    animation: slideIn 2s ease-in-out;
}

#home p {
    font-size: 1.5em;
    margin: 20px 0 0;
    animation: slideIn 2s ease-in-out;
}

#about, #projects, #contact {
    background: #222;
    margin: 20px;
    border-radius: 8px;
    padding: 40px;
}

.project {
    background-color: #333;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    transition: transform 0.3s;
}

.project:hover {
    transform: scale(1.05);
}

footer {
    background: #000;
    padding: 20px;
    text-align: center;
    color: #fff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
