body {
  margin: 0;
}

* {
  box-sizing: border-box;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  list-style: none;
}

.page-title {
  font-size: 44px;
  margin-bottom: 50px;
  letter-spacing: 4px;
}

.page-sub-title {
  font-size: 32px;
  margin-bottom: 42px;
  letter-spacing: 2px;
  text-decoration: underline;
}

.business-hours {
  margin-bottom: 60px;
  font-size: 28px;
  color: #ffa500;
}

/* page */
.page-container {
  width: 100vw;
  min-height: 100vh;
  min-width: 1200px;
  display: flex;
  flex-direction: column;
}
.page-main {
  flex: 1;
  position: relative;
  overflow: auto;

  padding-top: 24px;
  background-color: rgba(0, 0, 0, 0.05);
}
.page-inner {
  width: 1400px;
  text-align: center;
  margin: 0 auto;
}

/* .navbar */
.navbar {
  height: 80px;
  padding: 0;
  border-bottom: 1px solid #eee;
}

.container-fluid {
  height: 100%;
}

.navbar-collapse {
  height: 100%;
  display: flex;
  align-items: center;
}

.navbar-nav {
  margin-top: 0;
  margin-bottom: 0;
  height: 100%;
}

.nav-link {
  font-size: 24px;
  width: 140px;
  margin-left: 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-link.active {
  background-color: #ffa500;
  color: #000;
}

.navbar-brand {
  display: inline-block;
  width: 120px;
  height: 100%;
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
  font-size: 32px;
  font-weight: bold;

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

.navbar-brand.active {
  background-color: #ffa500;
}

.navbar-text {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
  height: 80%;
}

.navbar-text .btn {
  font-size: 18px;
}
