:root {
    --bg: #fff;
    --fg: #111;
    --accent: #0070f3;
}

[data-theme="dark"] {
    --bg: #111;
    --fg: #eee;
    --accent: #79b8ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: color .3s, background .3s;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--fg);
    line-height: 1.6;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

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

nav ul li#active a {
    font-weight: 600;
    border-bottom: 2px solid var(--accent);
}

main {
    padding: 2rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .5rem;
}

.fade-in {
    animation: fadeIn .6s ease-out both;
}

a {
    text-decoration: none;
    color: var(--fg);
}

a:hover {
    color: var(--accent);
    transform: translateY(-2px);
    transition: .2s;
}

.white-sun {
  color: #fff;
}

.hero-name {
  font-family: 'Great Vibes', cursive;
  font-size: 3rem;
  line-height: 1;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

#theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
}

#social-links {
    display: flex;
    flex-wrap:wrap;
}

.social-link {
    flex: 1 1 50%;
    list-style: none;
}

/* #skill-on-resume {
    display: none;
} */


#skill-on-web {
    display: none;
}

#skill-on-resume {
    display: flex;
    flex-wrap: wrap;

}

#skill-on-resume li {
    position: relative;
    list-style: none;
  padding-left: 1.2em;
}

#skill-on-resume li::before {
  content: "•";
  position: absolute;
  left: 0.5rem;
  color: #333;
}