
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Bahnschrift', 'Montserrat', sans-serif;
  font-stretch: semi-condensed;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: white;
  box-shadow: 0 0 8px rgba(0,0,0,0.75);
  z-index: 8;

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

  transition: all 200ms;
}

#navbar > * {
  position: relative;
  width: 200px;
  height: 75%;
  margin: 10px;
}

#navbar * {
  cursor: pointer;
}

#navbar .link span {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 26px;
  font-weight: 300;
  padding: 0px 8px;
  transform: translate(-50%,-50%);
}

#navbar .link.active span {
  font-weight: bold;
}

#navbar .link.active span:before {
  position: absolute;
  left: 0%;
  bottom: 0%;
  content: "";
  width: 100%;
  height: 50%;
  z-index: -1;
  border-radius: 8px;
  background: yellow;
}

#navbar .logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 36px;
  transform: translate(-50%,-50%);

  transition: all 200ms;
}

#navbar .search img {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 32px;
  transform: translate(-50%,-50%);
}

.section {
  width: 100%;
  height: 100vh;
}

.section.greeter {
  background-image: url("background.jpg");
  background-size: 65% auto;
  background-position-x: right;
  background-position-y: 50%;
  background-repeat: no-repeat;
}

.section.greeter .inner {
  background: linear-gradient(to right, white 45%, transparent 75%);
  width: 100%;
  height: 100%;
}

.section.greeter .inner .content {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  max-width: 2000px;
  transform: translate(-50%,-50%);
}

.section.greeter .inner .content #logo {
  position: relative;
  display: inline-block;
  height: 80px;
  width: 200px;
  background: url("esteLogo.png") no-repeat center center;
  background-size: 75%;
}

.section.greeter .inner .content #logo::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35%;
  background: yellow;
  border-radius: 8px;
  z-index: -1;
}

.section.greeter .inner .content h2 {
  font-stretch: normal;
  font-size: 36px;
  color: gray;
}

.section.greeter .inner .content h3 {
  font-weight: normal;
  font-stretch: normal;
  font-size: 28px;
  margin: 0;
  color: black;
}

.section.greeter .inner .content h3 span {
  position: relative;
  font-size: 64px;
  font-stretch: condensed;
  font-weight: bold;
  padding: 0 8px;
  transform: translateY(-50%);
}

.section.greeter .inner .content h3 span:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: yellow;
  border-radius: 8px;
  z-index: -1;
}

.section.greeter .inner .content .shopButton {
  display: inline-block;
  background: yellow;
  padding: 24px 36px;
  border-radius: 100px;
  font-size: 32px;
  font-stretch: normal;
  font-weight: bold;
  margin-top: 50px;
}


.section.display {
  background: black;
}

#debug {
  position: fixed;
  left: 50%;
  bottom: 10px;
  width: 400px;
  height: auto;
  padding: 0 16px;
  background: white;
  transform: translate(-50%,-50%);
  border-radius: 4px;
  border: solid lightgray 1px;
}

#navbar .logo.fixed img {
  padding-bottom: 5px;
}

#navbar.fixed {
  height: 128px;
}

#navbar.fixed .logo img {
  height: 50px;
}