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

/* Fixed header */
header {
position: fixed;
top: 0;
left: 0;
width: 100%;
background-color: black;
color: white;
padding: 20px 0 10px;
text-align: center;
z-index: 1000;
}

/* Header title */
header h1 {
margin-bottom: 10px;
font-size: 24px;
font-family: sans-serif;
}

/* Navigation styling */
nav ul {
list-style: none;
display: flex;
justify-content: center;
gap: 30px;
padding: 0;
}

nav ul li a {
color: white;
text-decoration: none;
font-weight: bold;
font-family: sans-serif;
font-size: 22px;
transition: color 0.3s ease;
}

nav ul li a:hover {
color: #ccc;
}

/* Main body */
main {
padding-top: 150px; /* create space for the fixed header */
background-image: url('pumpbg1-5.gif'); /* replace with your actual image path */
background-repeat: repeat;
background-size: auto;
min-height: 100vh;
font-family: Arial, sans-serif;
color: #444;
}

.content {
padding: 20px;
}