@import url("https://fonts.googleapis.com/css2?family=Story+Script&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Syne+Mono&display=swap");
:root {
  --white: #fff;
  --black: #000;
  --active: #6623d1;
  --white: white;
  --pink: #f02b69;
  --white-smoke: #f3f3f3;
  --light-ash: #bcbcbc;
  --peach: #6285f6;
  --purple: #6c63ff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--white);
  color: var(--black);
  padding: 1rem;
  font-family: "Mulish", sans-serif;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  padding-inline: 10px;
}
.title a {
  font-family: "Story Script", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  font-style: italic;
  padding-left: 2rem;
  color: var(--black);
}
.side-hamburger {
  padding: 10px;
}
.side-hamburger span {
  width: 4px;
  height: 28px;
  background: white;
  border-radius: 5px;
  display: inline-block;
  align-items: center;
  transform: rotate(90deg);
}
.hero-image {
  background-image:
    url("images/undraw_video-streaming_cckz.svg"),
    url("images/undraw_reading_6jjr.svg");
  background-size:
    50% 100%,
    50% 100%;
  background-position:
    left center,
    right center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 500px;
  padding: 20px;
}
.hero-image h1 {
  font-family: "Syne Mono", monospace;
  font-size: 2.5em;
  max-width: 1000px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  text-shadow: 2px 4px 40px rgb(0, 0, 0, 0.7);
}
.hero-image p {
  font-size: 1.5rem;
  text-align: center;
}
.get__started {
  margin: 0 auto;
  display: grid;
  place-content: center;
  margin-top: 10px;
}
.get__started a {
  width: 100%;
  background: var(--peach);
  color: var(--white);
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
.get__started a:hover {
  background: var(--purple);
}
.sub-section__1 img {
  width: 100%;
}
.sub-section_ {
  width: 100%;
}
.read-book-static,
.watch-movie-static {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: space-between;
}
/* FOOTER */
footer {
  padding: 1rem;
  margin-top: 1em;
  background: url("images/undraw_tree-swing_5010.svg") no-repeat;
  background-size: 50% 100%;
  height: 400px;
  display: flex;
  flex-direction: column;
}
.copyright {
  color: var(--pink);
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: auto;
}
/* MEDIA QUERY */
@media (max-width: 900px) {
  header {
    padding-block: 0rem;
  }
  .hero-image h1 {
    font-size: 28px;
  }
}
@media (max-width: 769px) {
  .title a {
    font-size: 24px;
  }
  .hero-image h1 {
    font-size: 1.5em;
  }
  .read-book-static,
  .watch-movie-static {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 500px) {
  h2 {
    font-size: 18px;
  }
  .title a {
    font-size: 20px;
  }
  .hero-image {
    padding: 0;
    padding-block: 10px;
    min-height: 380px;
  }
  .hero-image h1 {
    font-size: 22px;
  }
  .hero-image p {
    font-size: 16px;
  }
  .get__started a {
    font-size: 13px;
  }
  footer {
    height: 200px;
  }
  .copyright {
    font-size: 16px;
  }
}
@media (max-width: 376px) {
  .hero-image h1 {
    font-size: 20px;
  }
  .hero-image p {
    font-size: 14px;
  }
  .get__started a {
    font-size: 13px;
  }
}
@media (max-width: 340px) {
  .hero-image h1 {
    font-size: 18px;
  }
  .hero-image p {
    font-size: 16px;
  }
  .get__started a {
    font-size: 13px;
  }
}
@media (min-width: 769px) {
  .side-hamburger,
  .footer-icons {
    display: none;
  }
}
