/* Links */
a,
a:focus,
a:hover {
  color: #000;
  font-weight: bold;
  transition: 0.2s;
  -moz-transition: 0.2s;s
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  text-decoration: none;
}

a:focus,
a:hover {
  opacity: .7;
  text-decoration: none;
}

/*
 * Base structure
 */

body {
  font-family: Roboto, sans-serif;
  color: #000;
  background-color: #fff;
}

.bg-page{
  min-height: 500px;
  background: url('img/cover.jpg') center center no-repeat;
  background-size: cover;
}

h1{
  color:#84b265;
}

.claim{
  font-size: 1.5rem;
  font-weight: 300;
}

.logo img{
  max-width: 150px;
  height: auto;
}

.contact-container{
  background-color: rgba(132, 178, 101, 0.4);
  padding: 15px;
  margin-bottom: 10px;
}

.copyright{
  font-size:0.8rem;
}

@media (max-width: 480px) {
  .bg-page{
    display: none;
  }
}


