@import url("https://fonts.googleapis.com/css2?family=Baloo+Paaji+2:wght@400;600&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;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Baloo Paaji 2", sans-serif;
  margin: 0;
  padding: clamp(2rem, 8vw, 8rem);
  text-align: center;
  background-color: #fafaf5;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.container .logo {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #1F3260;
}

h1 {
  font-size: clamp(3.2rem, 10vw, 10rem);
  color: #07519A;
  font-weight: 600;
  display: inline;
}
h1 .book {
  font-weight: 400;
}

p {
  font-size: clamp(3.2rem, 6vw, 6rem);
  color: #07519A;
  font-weight: 400;
  display: inline-block;
  line-height: 1.6;
}
p a {
  position: relative;
  text-decoration: none;
  white-space: nowrap;
  color: #0861B8;
}
p a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1vw;
  bottom: 1rem;
  left: 0;
  background-color: #FF7F11;
  z-index: -1;
  opacity: 0.64;
  transition: all 0.2s ease-out;
}
p a:hover::before {
  opacity: 1;
}