:root {
    --primary-color: #000;
    --background-color: #fff;
    --text-color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'JetBrains Mono', monospace;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    position: relative;
    min-height: 100vh;
}

/* Black side bar */
body::before {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    width: 10%;
    height: 100%;
    background-color: black;
    z-index: 0;
}

/* Black bottom bar */
body::after {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10vh;
    background-color: black;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    padding-right: calc(15vw + 2rem); /* Account for black side bar */
    padding-bottom: calc(15vh + 2rem); /* Account for black bottom bar */
}

header {
    margin-bottom: 3rem;
    width: 90%;
}

.logo {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.logo img {
    width: 10%;
}

.title {
    width: 90%;
}

.title img {
    width: 100%;
}
h1 {
    font-size: 2rem;
    font-weight: normal;
    margin-bottom: 2rem;
}

h2 {
    font-size: 1.2rem;
    font-weight: normal;
    margin-bottom: 1rem;
}

section {
    margin-bottom: 3rem;
}

.purpose p {
    margin-bottom: 1rem;
    color: #666666;
}

.purpose-text {
    color: #666666;
}

.roles ul {
    list-style: none;
}

.roles a {
    color: #ABABAB;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.roles a:hover {
    text-decoration: underline;
    color: black;
}

footer {
    margin-top: 4rem;
    padding-top: 2rem;
}

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

footer a:hover {
    text-decoration: underline;
}

/* Contact info styling */
footer p {
    color: white;
    position: fixed;
    bottom: 2vh;
    left: 2rem;
    z-index: 1;
}

footer a {
    color: white;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .container {
        padding: 1rem;
        padding-right: calc(15vw + 1rem);
        padding-bottom: calc(15vh + 1rem);
    }

    h1 {
        font-size: 1.5rem;
    }

    .logo {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 480px) {
    body::before {
        width: 10vw;
    }

    .container {
        padding-right: calc(10vw + 1rem);
    }

    h1 {
        font-size: 1.2rem;
    }

    .logo {
        font-size: 2rem;
    }

    section {
        margin-bottom: 2rem;
    }
}
