/* styles.css */

body {
    font-family: Arial, sans-serif;
    background: 
        url('your_texture_image.jpg') center center fixed, /* Texture image */
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)); /* Gradient overlay */
    background-size: cover;
    color: #ffffff;
    font-size: 16px; /* Base font size for the entire page */
    line-height: 1.6;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px;
}

header h1 {
    margin: 0;
    font-size: 24px;
}

header nav ul {
    list-style: none;
}

header nav ul li {
    display: inline;
    margin-right: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

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

.container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    flex-grow: 1;
    margin-left: 20px; /* Adjust margin-left to move the sidebar more to the left */
}

.sidebar {
    width: 250px;
    background-color: #A9A9A9;
    padding: 20px;
    box-sizing: border-box;
    margin-right: 20px; /* Add margin-right to create space between sidebar and main content */
}

.btn {
    display: block;
    width: 200px; /* Adjust width as needed */
    margin-bottom: 10px; /* Added margin for spacing between buttons */
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
}

/* New styles for button container */

.button-container {
    margin-top: 20px; /* Added margin to separate button container from sidebar content */
}

/* New styles for link buttons */

.sidebar ul li a {
    display: block;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5); /* Change background color as desired */
    color: white;
    text-decoration: none;
    border-radius: 5px;1
    margin-bottom: 5px; /* Added margin for spacing between buttons */
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sidebar ul li a:hover {
    transform: translateY(-2px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
}

main {
    padding: 20px;
    max-width: 1000px;
    margin-left: 20px;
    margin-top: 20px; /* Added margin-top to create space between main content and footer */
}

.logo {
    display: block;
    margin: 20px auto; /* Center the logo horizontally */
    max-width: 100%; /* Ensure the logo does not exceed its container's width */
    height: auto; /* Maintain aspect ratio */
}

#home {
    font-size: 2.2em; /* Adjust the value as needed */
}

#about {
    font-size: 2.2em; /* Adjust the value as needed */
}

#rules {
    font-size: 2.2em; /* Adjust the value as needed */
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    margin-top: auto; /* This pushes the footer to the bottom */
}
