/*
GENERAL
*/
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  color: #4d4d4d;
  -webkit-font-smoothing: antialiased;
  background:  #f8f8f8;
  border-top: 3px solid #29abe2;
}

.container {
  margin: 0px auto;
  width: 620px;
}
p {
  margin-top: 0;
  margin-bottom: 10px;
}
a {
  color: #29abe2;
}

h2,
h3 {
  color: #29abe2;
}

h1 {
  font-family: "Montserrat", Arial, sans-serif;
}
h1 a {
  color: #4d4d4d;
  text-decoration: none;
}
h1 span {
  color: #29abe2;
}

header {
  display: table;
  width: 100%;
  padding: 20px 0 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #000;
}

/*header with search engine*/
header h1,
header .search-engine {
  display: table-cell;
}
header .search-engine {
  width: 50%;
}
header .search-engine input[type="text"] {
  padding: 5px;
  width: calc(100% - 105px);
}
header .search-engine input[type="submit"] {
  padding: 5px;
  color: #fff;
  font-size: 0.8rem;
  background-color: #29abe2;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
  img {
    width: 100%;
    height: auto;
  }
}