* {
    padding: 0;
    margin: 0;
}

:root {
    --neue-display: "neue-haas-grotesk-display";
    --neue-text: "neue-haas-grotesk-text";

    --dark-gray: #3c3b42;
    --maroon: #70231e;
    --silver: #827e7a;
    --manilla: #d5c5b2;
    --pink: #e291ca;
    --dark-blue: #130947;
}

/* All Across Site */

body {
    background-color: var(--manilla);
}

p {
    font-family: var(--neue-text), sans-serif;
    font-weight: 500;
}

h1, h2, h3, h4, h5 {
    font-family: var(--neue-display), sans-serif;
    font-weight: 700;
}

ul {
    font-family: var(--neue-text), sans-serif;
    font-weight: 500;
    margin-left: 1rem;
}

.center-constrained {
    max-width: 70%;
    margin: auto;
}

@media all and (max-width: 1280px) {
    .center-constrained {
        max-width: 100%;
    }
}

/* Navbar Styles */

.navbar-container {
    display: flex;
    padding: 2rem;
    font-family: var(--neue-display), sans-serif;
    font-weight: 700;
    background-color: var(--dark-gray);
    /* background-image: url('/images/rock-background.png'); */
}

    .navbar-container a {
        text-decoration: none;
        color: #ffffff;
    }

.navbar-logo {
    font-size: 2.5rem;
    line-height: 2.35rem;
    user-select: none;
}

/* .navbar-link-container {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: flex-end;
}

.navbar-link {
    font-size: 1rem;
    border-bottom: 0 solid #ffffff;
    width: 10rem;
} */

/* Footer Styles */

footer {
    background-color: var(--dark-gray);
    width: (100% - 4rem);
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 2rem;
}

    footer a {
        text-decoration: none;
        color: #ffffff;
    }

.footer-header {
    font-family: var(--neue-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-email {
    font-family: var(--neue-text);
    font-weight: 500;
    font-size: 0.9rem;
    color: #ffffff;
    text-decoration: none;
}

/* Index Styles */

.home-banner-container {
    height: 30rem;
    width: 100%;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;

    /* Remove later! */
    background-color: #000000;
}

.home-banner-content {
    padding: 2rem;
    margin: auto 2rem;
    background-color: rgba(34,34,34,0.3);
}

.home-banner-title {
    font-family: var(--neue-display), sans-serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.9rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.home-banner-description {
    font-family: var(--neue-text), sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.home-banner-buttons {
    display: flex;
    flex-wrap: wrap;
}

    .home-banner-buttons .home-banner-button:last-child {
        margin-right: 0;
    }

.home-banner-button {
    color: #ffffff;
    font-family: var(--neue-display);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.4rem;
    border: 2px solid #ffffff;
    margin-right: 0.5rem;
    user-select: none;
    text-decoration: none;
}

.home-biography-container-title {
    font-size: 3.5rem;
    line-height: 3.2rem;
    /* background-color: #d850c1; */
    width: calc(100% - 4rem);
    padding: 2rem;
    text-align: center;
    color: #ffffff;
    background-color: var(--manilla);
    font-family: var(--neue-display), sans-serif;
    font-weight: 700;
}

.home-biography-container {
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.home-biography {
    width: 100%;
    display: flex;
    flex-direction: column;
    user-select: none;
    background-color: var(--dark-gray);
}

.home-biography-image {
    width: 100%;
    padding-top: 40%;
    background-size: cover;
    background-position: center;
}

.home-biography-content {
    padding: 2rem;
    background-color: var(--dark-gray);
}

.home-biography-title {
    font-family: var(--neue-display), sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.home-biography-description-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-biography-description {
    color: #ffffff;
    font-size: 1rem;
    font-family: var(--neue-text), sans-serif;
    font-weight: 500;
}

.home-biography-link {
    font-size: 2rem;
    font-style: italic;
    font-weight: 700;
}

.home-biography-separator {
    height: 2rem;
    background-color: var(--manilla);
}

@media all and (max-width: 768px) {
    .home-biography-container {
        flex-direction: column;
    }

    .home-biography {
        width: 100%;
    }
}

/* Page Biography Styles */

.biography-container {
    display: flex;
    width: calc(100% - 4rem);
    padding: 2rem;
    justify-content: space-between;
}

.biography-image {
    width: 15rem;
    background-size: cover;
    background-position: center;
}

.biography-image-text-container > div {
    width: 48%;
}

.biography-landscape-image {
    background-size: cover;
    background-position: center;
    padding-top: 56.25%;
}

.biography-image-text-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.biography-content {
    width: calc(100% - 17rem);
}

.biography-title {
    font-family: var(--neue-display), sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.biography-description {
    font-family: var(--neue-text), sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

@media all and (max-width: 1024px) {
    .biography-image-text-container {
        flex-direction: column;
    }

    .biography-image-text-container > div {
        width: 100%;
    }

    .biography-landscape-image {
        margin-top: 2rem;
    }
}

@media all and (max-width: 768px) {
    .biography-container {
        flex-direction: column;
        align-items: center;
    }

    .biography-image {
        width: 100%;
        padding-top: 150%;
        margin-bottom: 2rem;
    }

    .biography-content {
        width: 100%;
    }

    .home-biography-image {
        padding-top: 60%;
    }
}