/* Box Model Hack */
* {
  box-sizing: border-box;
}

/* Clear fix hack */
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clear {
  clear: both;
}

/******************************************
  /* BASE STYLES - SITEWIDE
  /*******************************************/
html {
  font-size: 62.5%;
  font-family: Arial, Helvetica, sans-serif;
}

:root {
  --primary-text: #f9e9cc;
  --secondary--text1: #603814;
  --secondary--text2: #2b2b2b;
  --primary-bg: #901d1c;
  --secondary-bg: #403716;
  --outline: #f9e9cb;
}

body {
  margin: 0;
  padding: 0;

  font-size: 1.5rem;
  line-height: 1.5;
  text-transform: uppercase;
}

/* HEADER STYLES */
header {
  padding: 1.2rem 2.25rem;
  background-color: rgba(144, 29, 28, 0.5);
  border-bottom: 0.1rem solid var(--outline);
}

ul.nav--links {
  margin: 0;
  padding: 0;

  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style-type: none;
}

li.link > a {
  font-weight: 500;
  color: var(--primary-text);
  text-decoration: none;
  text-transform: uppercase;
}

li.link > a:hover {
  text-decoration: underline;
}

img.logo {
  width: 8rem;
  height: 8rem;
}

/* FOOTER STYLES */
footer {
  background-color: var(--secondary-bg);
  border-top: 0.1rem solid var(--outline);
  padding: 2rem 1.5rem;
}

.footer--content {
  display: flex;
  justify-content: space-between;
  align-items: center;

  color: var(--primary-text);
}

.footer--content > p {
  font-size: 1.4rem;
}

.footer--content > a {
  background-color: var(--primary-text);
  padding: 0.5rem 1.2rem;
  border-radius: 3rem;

  font-size: 1.6rem;
  font-weight: 600;
  color: var(--secondary--text1);

  text-decoration: none;
}

.footer--content > a:hover {
  text-decoration: underline;
}
