
:root {
/*
        --primary-color: #C2DBF1;
        --secondary-color: #FCD4B8;
        --accent-color: #CDDCC4;
        */

        --accent-color: #656b9c;
        --darker-accent: #974b8f;
        --lightest-grey: rgba(0,0,0,.125);
        --light-grey: rgba(0, 0, 0, .55);
        --mid-grey: rgba(0, 0, 0, .7);
        --dark-grey: #232323;
        --header-font: "Helvetica Neue", sans-serif;
        --main-font: "Open Sans", sans-serif;
        --header-font-weight: 200;

        --left-pad: 30px;

        /*
        Some other font pairings!

        --header-font: 'Space Mono', sans-serif;
        --main-font: Muli, sans-serif;

        --header-font: 'Merriweather', sans-serif;
        --main-font: 'Open Sans', sans-serif;
        */

        }

/* Main and general*/
body {
    /*background-color: var(--dark-grey);*/
    font-family: var(--main-font);
    font-size: 1rem;
    color: var(--mid-grey);
}

a {
    text-decoration: none;
    color: var(--accent-color);
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
 color: var(--accent-color);
}

#content {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    min-height: 100%;
    padding-left: var(--left-pad);
    padding-right: var(--left-pad);
}

/*
#content(:first-child) {
    padding: 15px;

}
*/

.section {
    padding-top: 30px;
}

.section-title {
    font-family: var(--header-font);
    font-weight: var(--header-font-weight);
    font-size: 1.8rem;
    border-bottom: var(--lightest-grey) 1px solid;
    margin-bottom: 7px;
}

.subsection-title {
    font-family: var(--header-font);
    font-weight: var(--header-font-weight);
    font-size: 1.6rem;
    border-bottom: var(--lightest-grey) 1px solid;
    margin-bottom: 7px;
    margin-left: 15px;
}

.container {
    max-width: 100%;
}

li {
    list-style-type: "-";
    padding-inline-start: 1ch;
}

li::marker {
    color: var(--light-grey);
}

.paper-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.paper-venue {
    font-weight: 600;
}

.paper-authors {
}

.me {
    color: var(--darker-accent);
}

.brag {
    color: var(--darker-accent);
}

.caption {
    font-size: 0.8rem;
}

@media (max-width: 928px) {
/*
    .container:not(:first-child) {
        padding: 20px;
    }

   body {
        zoom: 2;
   }
    */
}

/*
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1140px;
    }
}
*/



/* Picture bar */
#picture img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--lightest-grey);
    /*border-radius: 10px;*/
    object-fit: cover;
    padding: 5px;
}


/* Project-dedicated pages */

.proj-title {
    text-align: center;
    text-transform: capitalize;
    font-family: var(--header-font);
    font-weight: var(--header-font-weight);
    font-size: 3rem;
    padding-top: 30px;
}

.proj-authors{
    text-align: center;
    font-style: italic;
    font-size: 1.3rem;
}

#proj-desc {
    padding-top: 30px;
}

.project img {
    border-bottom: var(--lightest-grey) 1px solid;
    max-width: 100%;
    max-height: 100%;
    object-fit:cover;
}

.proj-fig {
    text-align: center;
    margin: auto;
    /*border: 1px solid var(--lightest-grey);*/
    padding: 10px 10% 10px 10%;
    display: inline-block;

}
.project .section-text {
    text-align: justify;
}

.proj-fig-cap {
    width: inherit;
}

/* Nav bar */
nav {
    background-color: white;
    border-bottom: var(--lightest-grey) 1px solid;
    font-family: var(--header-font);
    font-weight: var(--header-font-weight);
    font-size: 1.2rem;
}

nav a {
    font-weight: var(--header-font-weight);
}

nav .container {
    padding-left: var(--left-pad);
    padding-right: var(--left-pad);
    margin-left: 0px;
}


nav li {
    list-style-type: none;
    padding-inline-start: 0px;
}

a.nav-link {
    padding-bottom: 0px;
    padding-top: 0px;
}

a.nav-link:hover, a.navbar-brand {
    color: var(--accent-color) !important;
    text-decoration: none;
}

.navbar-brand {
    color: var(--accent-color) !important;
    font-size: 2rem;
}

@media (min-width: 992px) {

    .navbar-expand-lg .navbar-nav {
        margin-top: auto;
        height: 100%;
    }

    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        /*height: 38.5px;  /* Change this if you change the brand size!*/
        margin-top: auto;
        padding-bottom: 8px;
    }
}

/* Footer */
footer {
    border-top: 1px solid var(--lightest-grey);
    height: 30px;
    margin-top: 30px;
}

footer, footer a {
    font-weight: var(--header-font-weight);
    font-family: var(--header-font);
    font-size: 1rem;
}

footer .container {
    display: flex;
    height: 100%;
    flex-wrap: inherit;
    align-items: baseline;
    justify-content: center;
}

footer div {
    display: flex;
}

div#footer-copyright {
    padding-right: 5px;
}

#credit, #credit a {
    font-size: 0.8rem;
    height: auto;
    padding-left: 3px;
}