/**
 * CBE896 - light green
 * FF7F11 - orange
 */

/* Colors */
*::selection {
  background-color: #CBE896
}

html {
  text-align: justify;
}

a {
  color: #FF7F11;
  font-weight: bold
}

/* Page elements */
h1,
h2,
h3 {
  border-bottom: 1px solid #DDD;
  padding-bottom: 5px;
  margin-bottom: 10px;
  text-align: left;
}

ul {
  margin-left: 30px;
  margin-bottom: 1em;
}

/* Utils */
.text-right {
  text-align: right
}

/* Layout */
.container-lg {
  padding: 0 18px;
}

.col-md-4 {
  padding: 0;
}

@media(min-width: 768px) {
  .col-md-4 {
    padding: 0 10px;
  }

  .col-md-4:first-child {
    padding-left: 0;
  }

  .col-md-4:last-child {
    padding-right: 0;
  }
}

.grey {
  background-color: #F1F2F3;
  padding: 30px 0;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, .15)
}

/* Header */
header {
  margin-top: 0
}

@media(min-width: 768px) {
  header {
    margin-top: 30px;
  }
}

/* Footer*/
footer {
  margin: 30px 0 15px;
  color: #5C5B5A;
  font-size: 12px
}

.mono {
  font-family: monospace
}