html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #FAF9F6;
  color: #111;
}

.header {
  padding: 10px 100px 10px 50px;
  background-color: #FAF9F6;

  display: flex;
  justify-content: space-between;
  align-items: center;
}


.header h1 {
  font-family: 'Amiri', serif;
  font-weight: bolder;
  font-size: 2rem;
  margin-left: 98px;
  margin-bottom: 0;
}

.tiktok-link svg {
  width: 20px;
  height: 23px;
  fill: black;
  transition: fill 0.3s ease;
}

.tiktok-link:hover svg {
  fill: #69c9d0;
}

.hero h2 {
  margin-left: 150px;
  margin-top: 130px;
  font-size: 50px;
  margin-bottom: 10px; 
}

.hero p {
  margin-left: 150px;
  font-size: 18px;
  margin-top: 0;
}

.footer {
  margin-top: auto;
  padding: 40px 50px;
  background-color: white;
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  flex-wrap: wrap;
  position: relative;
}

.footer-left {
  margin-left: 100px;
}

.footer-right {
  margin-right: 100px;
}

.footer-left a,
.footer-right a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.footer-left a:hover,
.footer-right a:hover {
  text-decoration: underline;
  color: #555;
}

.footer-right a {
  margin-left: 1.5rem;
}

.footer-bottom {
  flex-basis: 100%;       
  margin-top: 15px;
  font-size: 14px;
  color: #666;
  text-align: center;
}
