/* body {
    font-family: 'Electrolize', sans-serif;
    background-image: url('volkswagon-small.JPG');
    background-repeat: no-repeat;
    background-position: -500px -50px;
    background-attachment: fixed;
} */

@keyframes clickme {
  0% {
    scale: 1;
  }
  50% {
    scale: 1.4;
  }
  100% {
    scale: 1;
  }
}

body {
  font-family: 'Electrolize', sans-serif;
  background-image: url('/images/volkswagen.jpg'),
    linear-gradient(#eeeb48, #faa5a58f);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: 50% center;
  background-color: #bbbe8a;
  background-blend-mode: multiply;
  color: #333;
}

.header {
  color: #fff;
  padding: 50px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.title {
  font-size: 3em;
}
main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* align-content: space-between; */
}

.book {
  animation-name: clickme;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}
.button {
  padding: 12px 24px;
  border: 0;
  outline: 0;
  margin: 10px;
  /* font-size: 1.2em; */
  background-color: #000;
  color: #fff;
  border-radius: 5px;
}
.button a {
  color: #fff;
  text-decoration: none;
}
footer {
  position: absolute;
  bottom: 10px;
}
* {
  margin: 0;
  padding: 0;
}

html,
body {
  margin: 0px;
  height: 100%;
}

@media screen and (min-width: 360px) {
  body {
    background-position: 55% center;
  }
}
@media screen and (min-width: 768px) {
  body {
    background-position: center center;
  }
  .title {
    font-size: 7em;
  }
}

@media screen and (min-width: 1000px) {
  .title {
    font-size: 10em;
  }
}
