.site-header {
    position: relative;
    z-index: 999;
    background: #222;
    padding: 20px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-header h1 {
    margin: 0;
    padding: 10px 0;
}

.site-header p {
    margin: 0;
    padding-bottom: 20px;
}

.tab-bar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #181818;
    border-bottom: 1px solid #333;
    width: 700px;
    max-width: 100vw;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 32px;
}

.tab {
    padding: 16px 32px;
    cursor: pointer;
    color: #f2f2f2;
    background: none;
    border: none;
    font-size: 1.1em;
    font-family: 'Noto Serif', serif;
    transition: all 0.2s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab.active, .tab:hover {
    background: #333;
    color: #fff;
}
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
        }
        h2, h3 {
            margin-top: 2em;
            margin-bottom: 1em;
            
        }
        /* Global scrollbar hiding */
        * {
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE and Edge */
        }
        *::-webkit-scrollbar {
            display: none;
        }

        html, body {
            height: 100%;
            margin: 0;
            padding: 0;
            font-family: 'Noto Serif', serif;
            transition: background-color 0.8s ease, color 0.8s ease;
            background-color: #222;
            color: #f2f2f2;
        }

        body {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: justify;
            box-sizing: border-box;
        }

        #text {
            transition: color 0.8s ease;
            max-width: 90%;
            word-wrap: break-word;
            
        }

        a {
            color: #2196f3;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        a:hover, a:visited {
            color: #1565c0;
        }

        a:hover {
            text-decoration: underline;
        }

        /* Heading styles */
        h1 {
            text-align: center;
        }

        /* Author subtitle */
        h1 + p {
            font-size: 20px;
            text-align: center;
        }

        /* Education section */
        #education h2 {
            font-weight: bold;
            
        }

        /* List styles */
        #education ul,
        #experience ul,
        #cv ul {
            padding: 0;
        }

        #education ul {
            list-style: disc;
        }

        #experience {
            list-style: none;
        }
        
        #cv ul {
            list-style: none;
        }

        /* Contact section */
        #contact a {
            font-size: 20px;
        }


