/* base.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #4B3B40;
  background-image: url("../assets/character/cover-visual.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2 {
  font-family: 'Baloo 2', cursive;
}

p {
  font-size: 14px;
}

footer {
  text-align: center;
  background-color: #ffffff;
  padding: 40px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
}
