* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  color: #0f172a;
  font-family: "Montserrat", sans-serif;
}

.site-header {
  flex: none;
  padding: 1.25rem 1rem 1rem;
  background: #ffffff;
  border-bottom: 2px solid #1e293b;
}

.brand {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.brand-logo {
  height: 1.5rem;
  margin-bottom: 0.5rem;
}

.brand-byline {
  font-size: 0.75rem;
  font-weight: 500;
}

.brand-name {
  font-size: 0.875rem;
  font-weight: 500;
}

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 0;
  background-image: url("static/background.jpeg");
  background-position: center;
  background-size: cover;
}

.notice {
  width: min(24rem, calc(100% - 2rem));
  margin: 1rem;
  padding: 1rem;
  color: #ffffff;
  background: rgb(0 0 0 / 70%);
}

.notice p {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.5;
}

.notice p + p {
  margin-top: 1rem;
}

.notice a {
  color: inherit;
  text-decoration: underline;
}
