* {
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    font-family: 'Open Sans', Calibri, sans-serif;
    font-weight: 300;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Oswald', Calibri, sans-serif;
}

a {
    color: black;
    transition: color 0.3s;
}

a:hover {
    color: blue;
}

img {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}

hr {
    border: none;
    height: 1px;
    color: transparent;
    background-color: black;
}

#wrapper {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.header-content,
.main-content,
.footer-content {
    position: relative;
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    position: relative;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 10;
    transition: background-color 0.5s;
}

.headerFixed {
    background: #072974;
}

.header-content {
    height: 80px;
    padding-top: 10px; padding-bottom: 10px;
    margin-bottom: 20px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Oxygen',sans-serif;
}

header nav {
    visibility: hidden;
}

header .logo-text,
header nav a {
    color: white;
}

header nav a {
    text-decoration: none;
    font-weight: bold;
}

header nav a:hover {
    color: white;
}

footer {
    background-color: lightgray;
    padding: 30px 0;
}

.footer-content {
    color: black;
    width: 100%;
}

.footer-content hr {
    margin: 0 auto 30px;
}

.info-cont {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: flex-start;
}

.info-cont p:not(:first-of-type ) {
    border-left: 1px solid black;
    padding-left: 10px;
    margin-left: 10px;
}

.info-cont a,
.info-cont p {
    text-decoration: none;
}

/**************************************** cool stuff *********************************************************/

.--underline-anim {
    position: relative;
}

.--underline-anim:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: white;
    visibility: hidden;
    border-radius: 5px;
    transform: scaleX(0);
    transition: 0.3s;
  }
  .--underline-anim:hover:before,
  .--underline-anim:focus:before {
    visibility: visible;
    transform: scaleX(1);
  }

  /***************************** queries ********************************************/

  @media screen and (min-width: 800px) {
    .footer-content {
        width: 80%;
    }
  }