/*
  Colors:
  Black: #000
  On Black: #aaa
  Primary Blue: #38587A
  Accent Orange: 944B26
*/

/* Element Styling */
html, body {
  height: 100%;
}


html {
  font-size: 16px;
}

body {
  font-family: 'Ubuntu', sans-serif;
  color: #282828;
  display: flex;
  flex-direction: column;  
}

.content {
  flex: 1 0 auto;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 1.75rem;
}

section {
  padding: 1rem 0;
}

a {
  color: #38587A;
}

a:hover {
  color: #1E3F60;
}

/*  HELPERS */

.with-decoration {
  display: inline-block;  
  position: relative;
  padding-bottom: 1rem;
}

.with-decoration:before{
  content: "";
  position: absolute;
  width: 80%;
  height: 1px;
  bottom: 0;
  left: 10%;
  border-bottom: #38587A 4px solid;
}

.accent {
  color: #BB8F4E
}

.blurred-edge-photo {
  background-size: cover;
  background-position: center center;
  box-shadow: 0 0 8px 8px white inset;  
}

.center-text {
  text-align: center;
}

.button {
  padding: 0.75rem 1rem;
  background-color: #38587A;
  border-radius: 3px;
  border: 1px solid #38587A;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.button:hover {
  background-color: #0A2643;
  border-color: #0A2643;
  color: #FFFFFF;
  text-decoration: none;
}

.info {
  margin: 3rem 0;
}