* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header and Navigation */
header {
    background-color: #E5E5E5;
    padding: 1rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
/* Remove underline and prevent color change on click */
a.logo {
    text-decoration: none;  
    color: inherit;       
}

a.logo:visited {
    color: inherit;  /* Prevents the color from changing after being clicked */
}

a.logo:hover {
    text-decoration: none;  /* Ensures no underline on hover */
}

a.logo:focus, 
a.logo:active {
    text-decoration: none;  /* Ensures no underline on focus or active state */
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-right: 1rem;
}

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

.auth-buttons button {
    padding: 0.5rem 1rem;
    margin-left: 0.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.login-btn {
    background-color: #f4f4f4;
    color: #333;
}

.signup-btn {
    background-color: #14213D;
    color: #fff;
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-right: 1.5rem;
}

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

/* Section Styles */
section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem;
}

h1 {
    text-align: center;
    margin-bottom: 1rem;
}

#profile img {
    display: block;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 1rem;
}

#profile h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

#profile p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: 3rem;
}
