@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

body {
  background-color: #FAFAFA;
}

@media only screen and (max-width: 414px) {
  .main {
    padding: 2em 1em;
    grid-template-columns: 1fr 1fr;
  }
  .main .book {
    grid-column: 1/span 2;
  }
  .main .book img {
    max-width: 300px;
  }
  .main .about {
    grid-column: 1/span 2;
    padding: 1em;
  }
  .main footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .main #share {
    height: 56px;
    width: 56px;
    background: url(./img/share.svg) no-repeat #002838;
    background-size: 20px 20px;
    background-position: center;
    border-radius: 100%;
    position: fixed;
    bottom: 24px;
    right: 24px;
    transition: all 0.3s ease-in-out;
    border: none;
  }
  .main #share:focus {
    outline: none;
    border: none;
  }
  .main #share:active {
    background-color: #335360;
  }
}
@media only screen and (min-width: 415px) {
  .main {
    padding: 4em 1em;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
  .main .book img {
    max-width: 420px;
  }
  .main .about {
    display: flex;
    flex-direction: column;
  }
  .main .about p {
    max-width: 395px;
  }
  .main #share {
    display: none;
  }
}
.content {
  max-width: 960px;
  margin: 0 auto;
}
.content .main {
  display: grid;
  grid-template-rows: 1fr;
  justify-items: center;
  align-items: center;
  grid-gap: 2em;
}
.content .main .book img {
  object-fit: cover;
  box-shadow: 0px 10px 40px rgba(0, 40, 56, 0.05);
}
.content .main .about h1 {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 1.75em;
  line-height: 1.2em;
  color: #002838;
  orphans: 2;
}
.content .main .about p {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1em;
  line-height: 1.5em;
  color: rgba(0, 40, 56, 0.75);
  margin: 1em 0 1.5em 0;
  text-align: justify;
}
.content .main .about .dl-btn {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 1em;
  align-self: flex-start;
  padding: 0.75em 1em;
  background-color: #6F5ED3;
  border: 1px solid rgba(76, 55, 200, 0.5);
  box-sizing: border-box;
  box-shadow: 0px 1px 0px #4C37C8;
  border-radius: 3px;
  transition-property: background-color transform;
  transition-timing-function: ease-in-out;
  transition-duration: 0.25s;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}
.content .main .about .dl-btn img {
  margin-left: 8px;
  transition-property: transform;
  transition-timing-function: ease-in-out;
  transition-duration: 0.4s;
}
.content .main .about .dl-btn:hover {
  background-color: #5D4ACE;
}
.content .main .about .dl-btn:hover img {
  transform: translate(0, 5px);
}
.content .main .about .dl-btn:focus {
  outline: none;
}
.content .main .about footer {
  margin-top: 3em;
}
.content .main .about footer a {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 0.75em;
  color: #58727C;
  text-decoration-style: dotted;
  margin-right: 1.5em;
}

/*# sourceMappingURL=style.css.map */
