*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}
html {
  font-weight: 500;
}
body {
  font-size: 20px;
  color: #000;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
}
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 10%;
}
.font-nanum {
  font-family: "Nanum Pen Script", cursive;
  font-weight: 400;
  font-style: normal;
}

.font-inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.font-calistoga {
  font-family: "Calistoga", serif;
  font-weight: 400;
  font-style: normal;
}

.font-kameron {
  font-family: "Kameron", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.font-quando {
  font-family: "Quando", serif;
  font-weight: 400;
  font-style: normal;
}
.medium {
  font-weight: 500;
}
.italic {
  font-style: italic;
}
.regular {
  font-weight: 400;
}
.text-base {
  font-size: 20px;
}
.text-lg {
  font-size: 28px;
}
.text-xl {
  font-size: 40px;
}
.text-2xl {
  font-size: 50px;
}
.text-4xl {
  font-size: 90px;
}
.btn {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 1.92;
  display: inline-block;
  color: #fff;
  background-color: #000;
  padding: 10px 40px;
  border-radius: 4em;
  position: relative;
  z-index: 1;
  text-wrap: nowrap;
}
.btn--outline {
  color: #000;
  border: 1px solid #000;
  background-color: transparent;
}

/* ======= Header ======= */
nav {
  padding: 52px 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .container {
    padding: 0 5%;
  }
}

@media (max-width: 768px) {
  .btn {
    font-size: 14px;
    padding: 8px 20px;
  }
  nav {
    padding: 24px 0;
  }
  .logo {
    width: 120px;
    height: auto;
  }
}

/*========== Footer =========== */
.footer {
  padding: 100px 0;
  background: #000;
}
.footer-links {
  display: flex;
  gap: 100px;
  justify-content: space-around;
  align-items: center;
}
.footer-links > * {
  color: #fff;
  font-family: "Kameron", serif;
  font-size: 20px;
  font-weight: 500;

  text-align: center;
  flex: 1;
}
.footer-links span {
  flex: 2;
}

@media (max-width: 1024px) {
  .footer-links {
    gap: 50px;
  }
  .footer-links > * {
    flex: 1 1 auto;
  }
}
@media (max-width: 768px) {
  .footer-links {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 30px;
  }
}
