/* Overall Site CSS */
html, body {
    height: 100%;
    margin: 0;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    margin-left: 7vw;
    margin-right: 7vw;
    flex: 1; /* Forces Footer to the bottom of page even if there's little content */
}

.navbar-logo {
    height: 50px;
    width: auto;
}

.navbar-title {
    height: 50px;
    width: auto;
}

.navbar-brand:hover {
    text-decoration: none;
}

a {
    font-weight: bold;
    color: black;
}

a:hover {
    color: blue;
}

.anchor-container {
    position: relative;
}
  
.anchor {
    position: absolute;
    top: -50px;
    left: 0px;
}

/* For Spacing Stuff because default behaviour is bad */
p, ul, .table {
    margin: 0px;
}

/* Make Page Headers more visually distinct from sticky Navbar */
.page-header {
    padding-top: 25px;
}

.section-header {
    padding-top: 15px;
}

.page-image {
    /* Set Max Width Property for specific images for sizing differently */
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    padding: 2px;
    margin: 20px 0px;
    border: 2px solid black;
}