﻿@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400&display=swap');

:root {
    --background: black;
    --primary-text-color: black;
    --secondary-text-color: dimgray;
    --primary-accent: #5da4da;
    --secondary-accent: #4d7ea3;
}

body {
    background-color: var(--background);
    background-image: url("./microbe_bg.png");
    background-size: cover;
    font-family: 'Roboto', sans-serif;
}

a {
    text-decoration: none;
}

    a.light {
        color: white;
    }

        a.light:hover {
            font-style: italic;
        }

    a.dark {
        color: var(--primary-text-color);
    }

    a.dim {
        color: var(--secondary-text-color);
    }

    a.blue {
        color: var(--secondary-accent);
    }

    a.header {
        font-size: 1.5em;
    }

img[src$=".svg"] {
    width: 100%;
    height: auto;
    display: block;
}

.sidebar-icon {
    width: auto !important;
    height: 1.2em !important;
}

.container {
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 2%;
    margin-bottom: 2%;
}

.sidebar {
    float: left;
    width: 300px;
    box-shadow: 5px 5px 10px black;
    background-color: var(--primary-accent);
}

.sidebar-header {
    height: 300px;
    background-image: url("./headshot.jpg");
    background-size: contain;
    position: relative;
}

.sidebar-header-text-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background-color: rgba(0,0,0,.25);
}

.sidebar-header-name {
    color: white;
    font-weight: 400;
    font-size: 1.6em;
    text-align: center;
    padding-top: 5px;
}

.sidebar-header-titles {
    color: var(--primary-accent);
    font-size: 0.8em;
    font-weight: bold;
    text-align: center;
}

.sidebar-header-subtitle {
    color: white;
    font-size: 1em;
    text-align: center;
    padding-bottom: 5px;
}

.sidebar-content-box {
    display: block;
    overflow: hidden;
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: 5px;
    margin-right: 5px;
    color: white;
}

.sidebar-content-box-icon {
    float: left;
    width: 10%;
    text-align: center;
}

.sidebar-content-box-content {
    float: right;
    width: 90%;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary-accent);
}

.sidebar-content-box-blurb {
    font-weight: 400;
}

.main {
    float: right;
    width: calc(100% - 300px - 15px);
}

.navigation-header {
    overflow: hidden;
    background-color: white;
    margin-bottom: 15px;
    padding: 35px;
    border: 1px solid lightgray;
    color: var(--primary-text-color);
    text-align: center;
    font-size: 1.5em;
    box-shadow: 5px 5px 10px black;
}

.topic {
    overflow: hidden;
    background-color: white;
    margin-bottom: 15px;
    padding: 35px;
    border: 1px solid lightgray;
    color: var(--primary-text-color);
    box-shadow: 5px 5px 10px black;
}

.topic-icon {
    width: 25px;
    float: left;
    font-size: 1.5em;
}

.topic-content {
    float: right;
    width: calc(100% - 50px);
}

.topic-title {
    font-size: 1.5em;
    font-weight: 400;
    font-weight: bold;
}

.topic-list-item {
    margin-top: 15px;
}

.topic-list-item-title {
    font-size: 1.3em;
    margin-top: 5px;
    margin-bottom: 5px;
}

.topic-list-item-timeline {
    color: var(--secondary-accent);
    font-weight: bolder;
}

.topic-list-item-description {
    font-weight: 400;
    color: var(--secondary-text-color);
}

.topic-footer {
    margin-top: 25px;
}

.topic-footer-more {
    text-align: right;
}
