/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f9;
}

/* STICKY NAVIGATION MENU */
header {
    background: #24292e;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px; /* Reduced padding slightly to fit the image nicely */
    height: 300px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* New container holding both the image and the text */
.logo-area {
    display: flex;
    align-items: center; /* Vertically centers the text with the image */
    gap: 12px; /* Space between the image and the phrase "My Site" */
}

/* Styles specifically for the small header image */
.header-logo-img {
    width: 300px; /* Adjust this to change how big your logo is */
    height: 300px; /* Keep width and height equal for a perfect square or circle */
    object-fit: cover; /* Keeps image proportions if it's not square */
    border-radius: 50%; 
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
}

header ul {
    list-style: none;
    display: flex;
}

header li {
    margin-left: 20px;
}

header a {
    color: #bbb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

header a:hover, header a.active {
    color: #00bcd4;
}

/* Standard Main Content Wrapper */
main {
    max-width: 800px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

footer {
    position: relative;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #666;
    background: #f4f4f9;
    z-index: 1;
}/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Typography and Background */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f9;
    padding: 20px;
}

/* Header Styling */
header {
    background: #24292e; /* GitHub's dark gray */
    color: #fff;
    padding: 1rem;
    text-align: center;
}

header a {
    color: #00bcd4;
    text-decoration: none;
}

/* Main Content */
main {
    max-width: 800px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
}
