

@charset "UTF-8";
/* CSS Document */

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

body {
  font-size: 62.5%;
  margin: 0;
  text-align: center;
  font-family: 'Lato', sans-serif;
  color: #999;
}

html>body {
  font-size: 10px;
}

#container {
  margin: 20px auto;
  max-width: 960px;
  text-align: left;
  font-size: 1.25em;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

#left {
  flex: 1;
  margin: 56px 2% 0 2%;
    padding: 20px;
}

h1 {
  letter-spacing: 6px;
  font-weight: 100;
}

h2 {
  font-size: 1.5em;
  font-weight: 100;
  letter-spacing: 1px;
}

#right {
  flex-basis: 200px;
  margin-top: 0;
  margin-right: 2%;
    padding: 20px;
}

h3 {
  text-transform: uppercase;
  margin: 0 0 6px 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  line-height: 1.3em;
}

p {
  line-height: 1.3em;
}

li {
  font-size: 1.2em;
  line-height: 1.5em;
}

a:link,
a:visited {
  color: #0b61a4;
  text-decoration: none;
}

a:hover {
  color: #05316D;
  text-decoration: underline;
}

a:active {
  color: #0b61a4;
}

p.copy {
  clear: both;
  text-align: center;
  padding: 20px 0 0 0;
  color: #eae9e9;
  width: 100%;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  #container {
    flex-direction: column;
  }
  
  #left,
  #right {
    margin-right: 0;
    margin-left: 0;
  }

  #left {
    margin-top: 0;
  }

  #right {
    margin-bottom: 20px;
  }
}
