/* Define your variables inside the :root pseudo-class */
:root {
    /* Color scheme */
    --color-bg-primary: rgb(25, 28, 32);
    /* --color-header-background: rgb(25 28 32 / 50%); */
    --color-header-background: #2a3036;
    --color-text-primary: #f4f4f4;
    --color-text-accent: #65c0e5;
    --color-text-accent-highlight: #b9e2f3;
}

* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 1em; */
    background: var(--color-header-background);
    height: 5vh;
    padding-left: 5em;
}

header img {
    height: 3em;
    width: 3em;
}

header h1 {
    margin: 0;
    font-weight: 600;
    font-size: 1.5em;
}

header h1 a {
    text-decoration: none;
    color: var(--text-color-primary);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1em;
}

nav {
    padding-right: 5vw;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: var(--color-text-primary);
    padding: 1em;
}

nav ul li a:hover {
    color: var(--color-text-accent);
}


.main a {
    text-decoration: none;
    color: var(--link-color);
}

.main a:hover {
    color: var(--color-text-accent);
}

.main-section-one {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    padding-right: 15em;
    padding-bottom: 5em;
    background-image: url('../img/skilltree.jpg');
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0), var(--color-bg-primary) 86%), url('../img/skilltree.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 500px;
    text-align: right;
}

.main-section-one h1 {
    margin: 0;
    font-size: 2.5em;
    /* color: var(--color-text-accent); */
}

.main-section-one p {
    font-size: 1em;
}

.footer {
    background: var(--color-header-background);
    width: 100%;
    height: 25rem;
    margin-top: 10em;
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* gap: 10em; */
    max-width: 75rem;
    margin: auto;
    padding-left: 5vw;
    padding-right: 5vw;
    height: 100%;
}

.footer-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    flex: 1;
    font-size: 0.85em;
}

.footer-left h1, h2, h3 {
    margin: 0;
}

.footer-left-right-word {
    opacity: 0.5;
}

.footer-left h2 {
    font-size: 1.5em;
    margin-top: 0.6em;
}

.footer-left h3 {
    font-size: 1em;
    font-weight: 400;
    margin-top: 0.5em;
    color: var(--color-text-accent);
}

.footer-left p {
    font-size: 1em;
}

.footer-right {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: flex-end;
    height: 100%;
    flex: 1;
    padding-bottom: 7.25em;
}

.footer-right ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    text-align: right;
    gap: 1em;
}

.footer-right a {
    color: var(--color-text-accent);
}

.footer-right p {
    font-size: 0.75em;
}


@media screen and (max-width: 800px) {
    header {
        padding: 0;
        padding: 0 1.25em 0 1.25em;
    }

    .main-section-one {
        padding: 0;
        padding: 0 1.25em 0 1.25em;
    }
}


#privacy-policy {
    font-size: 1em;
    width: 75%;
    margin: auto;
    margin-top: 5em;
}

#privacy-policy h2 {
    font-size: 1em;
    margin-top: 2em;
}

#privacy-policy p {
    font-size: 1em;
}

#privacy-policy a {
    color: var(--color-text-accent);
}

.pp-last-updated {
    font-size: 0.75em;
    font-weight: 300;
    margin-top: 1em;
    opacity: 0.5;
}