
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    /* Dark background */
    color: #e0e0e0;
    /* Light text color */
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #1f1f1f;
    /* Darker header background */
    color: #fff;
    padding: 1rem 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    /* Darker shadow */
    height: 66px;
}

#themes {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    /* Space between labels and dropdowns */
    position: absolute;
    right: 2rem;
    /* Adjust distance from the right edge of the header */
    top: 50%;
    transform: translateY(-50%);
}

#themes label {
    font-size: 0.9rem;
    /* Slightly smaller for modern aesthetics */
    color: #fff;
    /* Matches the header text color */
    font-weight: 500;
    /* Adds some weight for prominence */
}

#themes select {
    background-color: #2b2b2b;
    /* Dark background for dropdown */
    color: #fff;
    /* White text for contrast */
    border: 1px solid #444;
    /* Subtle border to separate dropdown */
    border-radius: 4px;
    /* Rounded corners */
    padding: 0.4rem 0.8rem;
    /* Comfortable padding for interaction */
    font-size: 0.9rem;
    /* Matches label size */
    cursor: pointer;
    transition: all 0.3s ease;
    /* Smooth hover animation */
}

#themes select:hover {
    background-color: #3c3c3c;
    /* Slightly lighter background on hover */
    border-color: #666;
    /* Subtle color change on hover */
}

#themes select:focus {
    outline: none;
    /* Removes default outline */
    box-shadow: 0 0 4px #aaa;
    /* Subtle focus ring for accessibility */
    border-color: #888;
    /* Highlights border on focus */
}

.info {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

header h1 {
    margin: 0;
}

nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

nav a {
    text-decoration: none;
    color: #bdbde4;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff6b6b;
}

a {
    color: #ff6b6b;
    text-decoration: underline;
    transition: color 0.3s;
}

.container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.about-section,
.blog-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #1e1e1e;
    /* Darker section background */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* Darker shadow */
}

#about img {
    width: 30%;
    border-radius: 15px;
}

h2 {
    color: #bdbde4;
    /* Light heading color */
}

.blog-list {
    list-style-type: none;
    padding: 0;
}

.blog-list li {
    margin: 0.5rem 0;
}

.blog-list a {
    text-decoration: none;
    color: #e0e0e0;
    /* Light text color */
    font-weight: bold;
    transition: color 0.3s;
}

.blog-list a:hover {
    color: #ff6b6b;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #1f1f1f;
    /* Darker footer background */
    color: #fff;
    margin-top: 2rem;
}