/* =========================================================
   Mizunara Studio
   Base / Reset
========================================================= */

* {
  margin: 0;
  padding: 0;

  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;

  overflow-x: hidden;

  color: var(--dark);

  font-family:
    "Poppins",
    sans-serif;
}

img {
  display: block;

  max-width: 100%;
}

a {
  color: inherit;

  text-decoration: none;
}

ul {
  list-style: none;
}

section {
  width: min(1200px, 90%);

  margin: auto;

  padding: 120px 0;
}

h1,
h2,
h3 {
  font-family:
    "Playfair Display",
    serif;
}

h2 {
  margin-bottom: 18px;

  font-size: 3rem;

  text-align: center;
}

/* =========================================================
   TAP / TOUCH
========================================================= */

* {
  -webkit-tap-highlight-color: transparent;
}

/* =========================================================
   RESPONSIVE GLOBAL
========================================================= */

@media (max-width: 768px) {

  h2 {
    font-size: 2.3rem;
  }
}

@media (max-width: 650px) {

  section {
    padding: 85px 0;
  }
}