html, body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Baloo Bhaijaan 2', sans-serif;
  color: #522900;
  background: #fffcf8;
  min-height: 100vh;
  padding-bottom: 60px;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 16px 0;
}

#logo {
  padding-top: 10px;
}

#logo img {
  max-width: 250px;
  height: auto;
}

.menu {
  list-style: none;
  gap: 30px;
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
}

.menu a {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
}

#addToiletStyle {
  background-color: #F57C00;
  color: white;
  border-radius: 40px;
  padding: 7px 16px;
  white-space: nowrap;
}

#addToiletStyle a {
  color: white;
}

.content {
  max-width: 900px;
  margin: 24px auto 0;
  padding: 0 16px;
}

h1 {
  margin: 0 0 20px;
  font-size: 34px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.card {
  background: #ffffff;
  border: 1.5px solid #ecd9c4;
  border-radius: 18px;
  padding: 20px;
}

.card h2 {
  margin: 0;
  font-size: 20px;
}

.card p {
  margin: 14px 0 0;
  font-size: 42px;
  color: #F57C00;
  line-height: 1;
}

.footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
  background-color: #ffffff;
  z-index: 1200;
}

.footerMenu {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.footerMenu a {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
}

.creatorsName {
  font-weight: bold;
  font-size: 13px;
}

.creatorsName a {
  color: inherit;
}

@media (max-width: 768px) {
  #logo img {
    max-width: 200px;
  }

  .menu {
    gap: 10px;
  }

  .menu a {
    font-size: 14px;
  }

  #addToiletStyle {
    padding: 6px 14px;
  }

  h1 {
    font-size: 28px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .card p {
    font-size: 38px;
  }

  .footerMenu {
    gap: 16px;
  }
}