/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

/* Wrapper */
#wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 10px;
}

/* Header */
#header {
    text-align: center;
    padding: 20px;
}

#header .logo {
    font-size: 2rem;
    color: #333;
}

#header .content h1 {
    font-size: 2.5rem;
    color: #333;
}

#header .content p {
    font-size: 1.2rem;
    color: #555;
}

#header nav ul {
    list-style: none;
    margin-top: 20px;
}

#header nav ul li {
    display: inline;
    margin: 0 10px;
}

#header nav ul li a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

#header nav ul li a:hover {
    text-decoration: underline;
}

/* Footer */
#footer {
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

#footer p {
    color: #777;
}

/* Background */
#bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('path-to-your-background-image.jpg') no-repeat center center/cover;
    z-index: -1;
}