body,
html {
  min-height: 100vh;
  margin: 0;
  font-family: "Noto Sans";
}

.bg-image {
  background-image: url("./assets/panobrew-bg-v2.jpg");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  width: 100%;
  position: relative;
  text-align: center;
  /* color: black; */
  color: #fff;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.7);
  /* background-color: rgba(255, 255, 255, 0.8); */
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  display: inline-block;
  width: auto;
  height: 60px;
  text-align: right;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}

body.scroll .header {
  transform: translateX(71%);
}

.header img {
  display: inline-block;
  height: 100%;
  width: auto;
}

.container {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.content {
  flex-grow: 1;
}

.logo {
  display: block;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}

.untappd-profiles img {
  width: 50px;
  border-radius: 50%;
  margin: 0 10px;
}

.button {
  border: 2px solid #d15b35;
  background: rgba(255, 255, 255, 0.1);
  /* background: rgba(209, 91, 53, 0.1); */
  border-radius: 5px;
  padding: 8px 15px;
  font-size: 1.15rem;
  min-width: 150px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.button:hover,
.button:active {
  background: rgba(255, 255, 255, 0.4);
  /* background: rgba(209, 91, 53, 0.4); */
}

a {
  color: inherit;
  text-decoration: none;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .logo {
    max-width: 200px;
  }

  .container {
    padding-top: 40px;
  }

  .header {
    height: 40px;
  }
}
