html, body {
  /* height: 100%; */
  font-family: "Roboto", sans-serif;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/gifts.jpg') no-repeat center center;
  background-size: cover;
  filter: blur(4px);
}

.content {
  position: relative;
  z-index: 1;
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  /* height: 100%; */
}

.content > div {
  margin: 60px auto;
  padding: 60px;
  max-width: 650px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.75);
}

h1 {
  text-transform: uppercase;
}

h2 {
  font-weight: normal;
  margin-bottom: 20px;
}

.listes {
  list-style: none;
  margin: 60px 0 0;
  padding: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.listes li {
  margin: 0 15px;
  padding: 0;
  text-align: center;
}

.listes li.or {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
}

.listes li a {
  display: inline-block;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  top: 0;
  transition: all linear 150ms;
}

.listes li a:hover {
  top: -10px;
}

.listes li a.amazon {
  background: #eee;
}

@media screen and (max-width: 690px) {

  h1 {
    font-size: 20px;
  }

  h2 {
    font-size: 18px;
  }

  .content > div {
    margin-left: 15px;
    margin-right: 15px;
  }

  .listes {
    display: block;
  }

}
