'body {
 '   font-family: Arial, sans-serif;
  '  margin: 0;
   ' padding: 0;
    'background-color: #2b2b2b; /* Dark background */
    'color: #ffffff; /* White text */
'}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: url('images/cs2-background.png') no-repeat center center fixed; /* Path to your background image */
    background-size: cover; /* Ensures the background covers the entire page */
    color: #d9d9d9; /* Text color to contrast with the background */
}

header {
    background-color: #1a1a1a;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo {
    height: 50px;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
}

nav ul li a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #1a1a1a;
    position: relative;
    bottom: 0;
    width: 100%;
}
background: url('images/cs2-background.png') no-repeat center center fixed;
background-size: cover;

