/*  General styles */
body {
  font-family: Arial, sans-serif;
  font-size: 100%;
}

.container {
  margin: 0 auto;
  width: 960px;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

p {
  font-size: 13px;
  line-height: 1.3em;
}

/*  Start Header */

.header {
  padding: 50px 0;
  background-color: yellowgreen;
}

.header h1,
.header h2 {
  color: greenyellow;
  text-align: center;
}
/* End Header */

/* Start Navigation */

.page-navigation {
  background-color: #222;
  border-color: #101010;
  min-height: 64px;
}

.page-navigation li {
  float: left;
  width: 100px;
}

.page-navigation a {
  display: block;
  color: #9d9d9d;
  line-height: 4em;
  font-weight: 700;
  text-align: center;
}

.page-navigation li a:hover {
  color: yellowgreen;
  border-color: black;
}

/* start form */
.login {
  padding: 15px 0;
  float: right;
}

.login input[type="text"],
.login input[type="password"] {
  padding: 5px;
  margin-right: 5px;
  border: 1px solid transparent;
  border-radius: 5px;
  outline: none;
}

.login input[type="submit"] {
  padding: 5px 15px;
  border: 1px solid lightgrey;
  border-radius: 5px;
}

.login input[type="submit"]:hover,
button:hover {
  background-color: darkgrey;
  color: white;
}
/* end form */
/* End Navigation */

/*  Start Collection */

.colections {
  overflow: auto;
}

.collection-tittle {
  padding-bottom: 5px;
  border-bottom: 1px solid #777;
  font-size: 36px;
}

.collection-tittle small {
  color: #777;
  font-size: 70%;
}

.collection-item-outer {
  display: inline-block;
  float: left;
  padding-left: 5px;
  padding-right: 5px;
  width: 33.33%;
  box-sizing: border-box;
}

.collections > div:first-child {
  padding-left: 0;
  padding-right: 5px;
}

.collections > div:last-child {
  padding-right: 0;
  padding-left: 5px;
}

.collection-item {
  border: 1px solid #959595;
}

.collection-item img,
.collection-item video {
  width: 100%;
}

.collection-text {
  padding: 0 20px 20px 20px;
}

.collection-text h3 {
  color: yellowgreen;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.collection-text p {
  max-height: 80px;
  overflow: hidden;
}

.collection-text button {
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 5px;
  outline: none;
}
/* End Collection */

/* Footer */
.footer {
  background-color: yellowgreen;
  color: white;
  padding: 20px 0;
  margin-top: 450px;
}
