
body, html{
    min-height: 100%;
}

body {
    background-color: floralwhite;
    /* Body Text Font*/
    font-family: 'Montserrat', 'Open Sans', 'Sans Serif';
}

/* Start of Nav Bar Styling */
nav {
    background-color: #252422;
}

#greeter {
    color: #EB5E28;
}

.nav-link {
    color: #eb5e28;
}

.navbar-brand {
    color: #eb5e28;
}

/* Nav Bar Hover Styling*/
.nav-link:hover {
    color: floralwhite;
}

.navbar-brand:hover {
    color: floralwhite;
}

/* Nav Bar Visited Link Styling*/
.nav-link:visited {
    color: #eb5e28;
}

.navbar-brand:visited {
    color: #eb5e28;
}

/* Important! Make sure to put this class on the current page's nav-link in Nav Bar*/
.currentPage {
    color: floralwhite !important;
}

/* Start of Content Styling */
h1 {
    font-family: 'Montserrat', Sans-erif;
}
h2 {
    color: #EB5E28;
    font-family: 'PT Serif', Serif;
    font-size: 2em;
    padding: 4px;
}
.link {
    color: #EB5E28;
    text-decoration: underline;
    font-family: 'PT Serif', Serif;
}
li{
    font-size: 1.2em;
}

/* General Container/Div Styling*/
.sectionStyle {
    background-color: floralwhite;
    margin: 0px;
    padding: 32px 8px 32px 8px;
    color: #252422;
}

.sectionStyle a {
    color: #EB5E28;
    text-decoration: underline;
    font-family: 'PT Serif', Serif;
    padding: 4px;
}

.sectionStyle h5 {
    font-size: 1.25em;
    padding: 4px;
    font-weight: bold;
}

.sectionStyle p {
    height: auto;
    font-size: 1.2em;
    text-align: left;
    padding: 4px;
}

/* Home Page Styling */
.greeterForm{
    border: 2px solid #EB5E28;
    border-radius: 6px;
}
#signup{
    background-color: white;
}
.basicTerms li{
    list-style-type: none;
    margin: 1em;
}
.term{
    font-size: 1.25em;
    font-weight: bold;
}
.termExample{
    max-width:600px;
    margin-left: auto;
    margin-right: auto;
}
/* End of Home Page Styling */

/* About Us Page Styling*/
#aboutUsSubTitle {
    color: black;
    font-family: 'PT Serif', Serif;
}

.teamContainer {
    border: 2px solid floralwhite;
    border-radius: 16px;
    max-width: 400px;
}

.teamContainer img {
    display: block;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.teamContainer:hover {
    box-shadow: 5px 10px 8px #ccc5b9;
    transition: 0.3ms;
    border: 1px solid #ccc5b9;
}

.vl {
    border-left: 2px solid #EB5E28;
    height: auto;
    margin: 50px 0px 50px 0px;

}

/* End of About Us Page Styling */

/* Start of Timeline Page Styling */
/* The actual timeline (the vertical ruler) */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ccc5b9;
    border-radius: 12px;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: white;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

/* Container around content */
.tlContainer {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    border-radius: 12px;
}

/* The circles on the timeline */
.tlContainer::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -13px;
    background-color: white;
    border: 4px solid #FF9F55;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

/* Place the container to the left */
.left {
    left: 0;
}

/* Place the container to the right */
.right {
    left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
}

/* Add arrows to the right container (pointing left) */
.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
    left: -13px;
}

/* The actual content */
.content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
    /* Place the timelime to the left */
    .timeline::after {
        left: 31px;
    }

    /* Full-width containers */
    .tlContainer {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    /* Make sure that all arrows are pointing leftwards */
    .tlContainer::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }

    /* Make sure all circles are at the same spot */
    .left::after, .right::after {
        left: 15px;
    }

    /* Make all right containers behave like the left ones */
    .right {
        left: 0%;
    }
}

/* End of Timeline Page Styling */

/* Start of Past Page Styling*/

/* Side Nav Styling */
/* The sidebar menu */
.sidenav {
    height: 100%;
    width: 15%;
    position: fixed; /* Fixed Sidebar (stay in place on scroll) */
    /*z-index: 1; !* Stay on top *!*/
    /*top: 60px; !* Stay at the top *!*/
    left: 0;
    overflow-x: hidden; /* Disable horizontal scroll */
    /*padding-top: 16px;*/

    transition: top .24s ease-in-out; /* makes the scrolling animation smoother when that js code hits it */
}

.sidenavHeader {
    margin: 8px;
    font-size: 1.35em;
}

/* The navigation menu links */
.sidenav a {
    padding: 8px 8px 8px 16px;
    text-decoration: none;
    font-size: 1.2em;
    color: #252422;
    display: block;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
    color: #eb5e28;
}

/* Style page content */
.main {
    margin-left: 15%;
    padding: 0px 10px;
}

.main h1 {
    padding-top: .5em;
}

/* On smaller screens, where height is less than 450px, change the style of the sidebar (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 1em;
    }
}

.infoContainer {
    float: left;
    height: auto;
    clear: left;
}

.infoContainer p {
    width: auto;
    font-size: 1.25em;
    padding: 6px;
    margin-left: 6px;
}

/* Centering Figure/Image (Not Working :( )*/
figure {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Orange horizontal line (hl) */
.hl {
    clear: both;
    border-bottom: 2px solid #EB5E28;
    width: auto;
    margin: 40px 120px 40px 120px;
}

/* End of Past Page Styling*/

/* hi i moved your media query down here so it overwrites the other stuff

this is for the History pages' styling*/

/* Causes the middle vertical line (vl) to disappear for small screens*/
@media (max-width: 767.98px) {
    .displayNone { /* Causes the middle vertical line (vl) to disappear for small screens*/
        display: none;
    }

    .main {
        margin-left: 2em;
    }
}

/* Overwriting bootstrap the lazy way. If this messes something up, tell Alison. */

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: white;
}

#firstName {
    max-width: 400px;
}

/* no colors anymore, i want them to turn black~ (overwrites bootstrap's primary button color) */
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #000;
    --bs-btn-border-color: #EB5E28;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #181818;
    --bs-btn-hover-border-color: #EB5E28;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #181818;
    --bs-btn-active-border-color: #EB5E28;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #ccc;
    --bs-btn-disabled-border-color: #ccc;
}

/* utility class for para spacing */
.ml-6{
    margin-left: 6px;
}

/* header section */

.headerImage{
        background: url('../img/Typography Marquee1.png');
    background-size: cover;
    min-height: 448px;
}

/* bottom banner */
.bottomBanner{
    background: url('../img/Bottom Banner1.png');
    background-size: cover;
    min-height: 150px;
}

/* Blockquote on Present Page Styling */
blockquote{
    background-color: white;
    border: 2px solid #eb5e28;
}
