body {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 15pt;
    font-weight: 300;
    background-color: #475062;/* #212A3B;*/
    color: #DFE7E6;
    text-shadow: 1px 1px 1px #555;
    margin: 0;
}

a:link {
    color: #ffa800;
}

a:visited {
    color: #C7AA3B;
}

a:hover {
    color: #ff6445;
}

a:active {
    color: #ff6445;
}


h2 {
    font-size: 20pt;
    font-weight: 400;
}

h3 {
    font-weight: 300;
    font-size: 15pt;
}

.bigname {
    font-weight: 400;
    font-size: 75pt;
    font-family: 'Sacramento', sans-serif;
    float: right;
    height: 85pt;
}

.undername {
    float: right;
    font-weight: 300;
    font-size: 15pt;
    opacity: 50%;
    font-style: italic;
}

.headerimage {
    float: left;
}

.side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.center {
	display: flex;
    align-items: center;
    justify-content: center;
}

.topbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #475E89;
    z-index: -100;
    padding-bottom: 25px;
}

.main {
    margin-top: 350px;
    background-color: #475062;
    padding: 0px;
    min-height: 1024px;
    position: relative;
}

.content {
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 50px;
}


/* Style the navbar */
#navbar {
    overflow: hidden;
    background-color: #51506e;/*#484762;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navbar links */
#navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 25pt;
    text-shadow: 0px 0px 10px #000000;
}

#navbar a:hover {
    color: #ffd4ff;
    text-shadow: 0px 0px 15px #eb8aeb;
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
/*.sticky + .main {
  padding-top: 60px;
}*/