@font-face {
  font-family: 'norse';
  src: url('fonts/norse.woff2') format('woff2'),
       url('fonts/norse.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'norsebold';
  src: url('fonts/norsebold.woff2') format('woff2'),
       url('fonts/norsebold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}
/*--------------------------------------------------*/
/* HEADER */
/*--------------------------------------------------*/
#wrapper {
  min-width: 220px;
  max-width: 1600px;
  margin: auto;
}
#wrapper h1, h2, h3 {
  margin: 0.2em 0 0.2em 0;
  font-weight: normal;
}
body {
  background-image: url(assets/bg-texture.jpg);
}
#logoPanel {
  display: flex;
  justify-content: center;
}
#logoPanel img {
  max-width: 700px;
}
#logoPanel ul {
  list-style-type: none;
  display: flex;
  justify-content: space-around;
  margin: 0;
  padding-left: 0;
  padding-top: 1%;
}
nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: center;
  border: 1px solid #5e5b4d;
  font-family: 'norsebold', sans-serif;
}
nav li {
  border-bottom: 1px solid #757263;
  padding: 0.5em;
  font-size: 1.2em;
}
nav a {
  text-decoration: none;
  color: #757263;
}
.selected {
  color: lightgray;
}
/*--------------------------------------------------*/
/* FOOTER */
/*--------------------------------------------------*/
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #5e5b4d;
  padding: 1em 0 1em 0;
  font-size: 1.2em;
  font-family: 'norse', sans-serif;
}
#bottomInfo {
  display: flex;
  width: 10em;
  text-align: center;
  justify-content: center;
  color: whitesmoke;
  border-bottom: 1px solid antiquewhite;
  padding-bottom: 0.5em;
}
#bottomInfo ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#bottomAddress {
  display: flex;
  width: 10em;
  justify-content: center;
  color: whitesmoke;
  border-bottom: 1px solid antiquewhite;
  padding: 0.5em;
}
#bottomLinks {
  display: flex;
  width: 10em;
  flex-direction: column;
  text-align: center;
  padding-top: 0.5em;
}
#bottomLinks ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#bottomLinks li {
  padding: 0.2em 0 0.2em 0;
}
#bottomLinks a {
  text-decoration: none;
  color: whitesmoke;
}
#bottomSocial {
  filter: invert(100%);
  justify-content: center;
}
#bottomSocial a {
  padding: 0 0.5em;
}
/*--------------------------------------------------*/
/* QUERIES */
/*--------------------------------------------------*/
@media (min-width: 700px) {
  nav ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.5em;
  }
  nav li {
    border-bottom: 0;
    padding-left: 2%;
    padding-right: 2%;
    width: 7em;
  }
  footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
  }
  #bottomInfo {
    border-bottom: 0;
    padding-bottom: 0;
  }
  #bottomAddress {
    border-bottom: 0;
    border-left: 1px solid antiquewhite;
    border-right: 1px solid antiquewhite;
    width: 100%;
  }
  #bottomLinks {
    padding-top: 0;
  }
  #infoPanel {
    display: flex;
  }
  #logoPanel ul {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: center;
    padding-right: 4%;
    border: 0;
    filter: none;
  }
}