*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
}

main {
  background-color: #ecdbc2;
  background-image: url(./images/natural-paper.png);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
  height: 100vh;
}
@media only screen and (min-width: 0px) and (max-width: 450px) {
  main {
    height: auto;
  }
}

section {
  background-color: #f5f3f0;
  box-shadow: 1px 1px 3px lightgray;
  margin: 0 auto;
  padding: 50px 75px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 0px) and (max-width: 450px) {
  section {
    padding: 25px 25px;
    height: 100vh;
    background-color: #ecdbc2;
    background-image: url(./images/natural-paper.png);
  }
  section img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  section .book {
    margin-bottom: 25px;
  }
}
section h1 {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 15px;
  text-align: center;
  max-width: 500px;
}
section h2 {
  margin-bottom: 25px;
  font-size: 20px;
}
section img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-bottom: 25px;
  transition: 0.2s;
}
section a {
  font-weight: bold;
  color: black;
  letter-spacing: 0.5px;
  cursor: pointer;
}
section a button {
  padding: 20px 25px;
  background: #FEDD15;
  border-radius: 100vh;
  border: none;
  box-shadow: 1px 1px 4px #333;
  margin-bottom: 25px;
  transition: 0.2s;
  cursor: pointer;
}
section a button:hover {
  box-shadow: 1px 1px 1px #333;
  transition: 0.2s;
  transform: translateY(2px);
  color: black;
}
section p {
  text-align: center;
  line-height: 1.5;
}/*# sourceMappingURL=index.css.map */