/* Basic Reset */
* {
   /* margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
*/

}

/* Ensure the body has a white background */
body {

  /*  margin: auto;
    padding: 0;
    color: #333;
}*/

}
/* Add lines above and below the main content */
main {
    padding: 0px;
}

/* Font face for custom font */
@font-face {
    font-family: 'KabelLTStd-Heavy';
    src: url('fonts/KabelLTStd-Heavy.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=CopperplateGothic:wght@500&display=swap');

/* Monopoly Title Styling */
.monopoly-title {
    font-family: 'KabelLTStd-Heavy', sans-serif;
    color: black;
    font-weight: 600; /* Adjusted to be less bold */
    font-size: 48px;
}

/* Unused Monopoly Styling */
.unuseMonopoly {
    font-weight: 600; /* Adjusted to be less bold */
    font-size: 48px; /* Increased font size */
    color: #ffffff;
    background: linear-gradient(to bottom, #ff3333, #421515);
    padding: 16px 4px;
    line-height: 0.8;
    display: inline-block;
    border-radius: 0px;
    text-transform: uppercase;
    box-shadow: 0 10px 6px rgba(0, 0, 0, 0.1);
    border: 4px solid #ffffff;
    letter-spacing: 1px; /* Increased letter spacing */
    position: relative;
}

.unuseMonopoly::before {
    content: "";
    display: block;
    height: 10px;
    background-color: #ffffff;
    position: absolute;
    top: -14px;
    left: 50%;
    width: 70%;
    transform: translateX(-50%);
    border-radius: 5px 5px 0 0;
}

/* Title Container */
.title-container {
    position: relative;
    text-align: center;
    margin-top: 50px;

}

/* Header container setup */
header .container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center-align the elements */
    padding-bottom: 20px;
    position: relative;

}
header
{

    left:0;
    righ:0;
}

/* Position the login/signup link in the top-right corner */
.login-nav {
    list-style: none;
    position: absolute;
    top: 20px;
    right: 20px;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

.login-nav li a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

.login-nav li a:hover {
    color: #0056b3;
}

/* Special styling for the logout link */
.logout-link! {
    color: #800000; /* Bordeaux color */
}

.logout-link:hover! {
    color: #600000; /* Darker Bordeaux on hover */
}

/* Center the logo and tagline */
.logo {
    text-align: center;
    margin-top: 20px;
}

.logo h1 {
    margin: 0;

}

.logo a {

    color: #3f3a3a;
    text-decoration: none;
    margin-top: 5px; /* Space between the logo and the tagline */
    display: block;
}

/* Style the nav wrapper to span full width and add borders */
.nav-wrapper {

    left: 0;
    right: 0;
    width: 100%;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    box-sizing: border-box;
    margin-top: 20px;
 background-color:white;
}

/* Center the nul within the wrapper */
nav ul {
    font-weight: bold;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    display: flex;
    gap: 20px;
    
    justify-content: center; /* Center the navigation items */
}

nav ul li a {
    text-decoration: none;
    color: #333;
    margin
    font-weight: bold;
}

nav ul li a:hover {
/*    color: #000;*/
    background-color: black;
    color:whitesmoke;
}
 .login-nav {
    padding-right: 50px;
    position: static;
    margin-top: 5px;
    justify-content: flex-end;
    gap: 10px;
    border-bottom: 1px solid #333;
    width: 100%;

        background-color:white;
/*        background-color:rgba(240, 245, 240, 1);*/
    }
/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .nav-wrapper {
        width: 100%;
    }

    .login-nav {
        position: static;
        margin-top: 10px;
        justify-content: center;
        gap: 10px;
    }

    .login-nav li {
        display: inline-block;
        margin: 1px;
    }
  /* Add padding to the first and last li in login-nav and main-nav */
    .login-nav li:first-child,
    .main-nav li:first-child {
        padding-left: 10px; /* Adjust the padding value as needed */
    }

    .login-nav li:last-child,
    .main-nav li:last-child {
        padding-right: 10px; /* Adjust the padding value as needed */
    }
}
}
