body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #424242;
    color: #424242;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.navbar {
    background-color: #424242;
    padding: 10px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar-container {
    max-width: 100rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-name {
    color: #ffffff;
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgb(255, 255, 255);
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s, text-shadow 0.2s;
}

.brand-name:hover {
    color: #ff0000;
    text-shadow: 0 0 10px rgb(255, 0, 0);
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin-left: 0.5rem;
}

.nav-links a {
    color: #dfdfdf;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 40px;
    border-radius: 0.6rem;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.nav-links a:hover {
    background-color: #5f5f5f;
    color: #ff0000;
}