.dark-mode .interest-tech {
    color: red;
}
.dark-mode .interest-music {
    color: rgb(7, 201, 7);
}
.dark-mode .interest-gaming {
    color: rgb(113, 113, 255);
}


.interest-tech {
    color: rgb(0, 100, 45);
}
.interest-music {
    color: rgb(201, 133, 7);
}
.interest-gaming {
    color: rgb(255, 0, 98);
}
.about-me {
    text-align: center;
}

:root {
    --bg-color: #ffffff;
    --text-color: #333333;
    --header-bg: #4a4a4a;
    --header-text: #ffffff;
    --project-bg: #f4f4f4;
}

.dark-mode {
    --bg-color: #333333;
    --text-color: #ffffff;
    --header-bg: #1a1a1a;
    --header-text: #ffffff;
    --project-bg: #4a4a4a;
}


body {
    font-family: "Noto Sans", "Lato", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: background-color 0.3s, color 0.3s;
    margin: 0px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: var(--header-bg);
    color: var(--header-text);
    padding: 1rem 0;

}

header h1 {
    margin-bottom: 0.5rem;
}


.menu-bar>ul {
    padding-left: 0%;
    list-style-type: none;
}

.menu-bar>ul>li {
    display: inline;
    margin-right: 10px;
}

.menu-bar>ul>li>a {
    color: var(--header-text);
    text-decoration: none;
}

.main-content {
    padding: 2rem 0;
}

.project {
    background-color: var(--project-bg);
    padding: 1rem;
    margin-bottom: 1rem;
}

footer {
    /* background-color: var(--header-bg); */
    /* color: var(--header-text); */
    text-align: end;
    padding: 1rem 0;
}

#mode-switch {
    background-color: transparent;
    border: none;
    color: var(--header-text);
    cursor: pointer;
    font-size: 1rem;
}

.mode-switch {
    position: relative;
    /* right: 20px;
    top: 20px; */
    background: none;
    border: none;
    color: var(--header-text);
    font-size: 1.5rem;
    cursor: pointer;
}

header {
    position: relative;
}

@media (max-width: 768px) {
    header {
        text-align: center;
    }

    nav ul {
        margin-top: 1rem;
    }

    nav ul li {
        display: block;
        margin-bottom: 0.5rem;
    }
}

/* Light mode link styles */
a {
    color: #ab0d4f; /* Deep blue */
    text-decoration: none;
    transition: color 0.3s ease;

}

a:hover {
    color: #d6749d;
    text-decoration: underline;
}

/* Dark mode link styles */
.dark-mode a {
    color: #8ab4f8; /* Soft light blue */

}

.dark-mode a:hover {
    color: #aecbfa;
    text-decoration: underline;
}