/* Landing page layout only */

body.home {
  margin: 0;
  min-height: 100vh;
  background: #fff;

  display: flex;
  flex-direction: column;
}

body.home .home-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.home .menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

body.home .menu .btn {
  border: 2px solid #000;
  border-radius: 0;
  background: none;
  color: #000;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
}

body.home .menu .btn:hover {
  background: #000;
  color: #fff;
}
