html, body {
  background-color: #cccdce;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0; 
}

.header {
  background-color: #fff;
  height: 140px;
  text-align: center;
}

.header h1 {
  color: #31363d;
  font-size: 32px;
  margin: 0; /* відстань від початку сторінки до початку документу*/
  padding: 44px; /*відступ від h1 do header*/ /* те саме, що і нижче*/
  /*position: relative;  
  top: 44px;*/
  text-transform: uppercase; 
}

.nav ul {
  margin: 0 0 30px;
  text-align: center;
  height: 50px;
  padding: 20px 0px;
} 

.nav li {
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  padding: 20px 10px;
  color: white;
}

.nav li: hover {
  color: #31363d;
  cursor: pointer; 
  -webkit-transition: color 1s;
  transition: color 1s;
}

.row {
  margin-top: 30px;
}

.footer {
  color: #31363d;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 70px;
  text-align: right; 
  padding-right:40px;
  margin-bottom: 100px; 
}


/*
  img.zoom {
    cursor: pointer;
    max-width: 150px;
  }
  img.zoom:hover {
    max-width: none;
  }
 */
@media (max-width: 500px) {
  .row {
    margin-top: 0;
  }
  .img-responsive {
    margin-bottom: 20px;
  }
}