/* ============================================
   404 Page Styles
   ============================================ */
main {
  display: flex;
  justify-content: center;
  align-items: center;
}
.br-404__inner {
  text-align: center;
  padding-top: var(--br-space-xl);
  padding-bottom: var(--br-space-xl);
}
.br-404__code {
  font-family: var(--br-font-accent);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  margin: 0 auto var(--br-space-md);
}
.br-404__title {
  font-family: var(--br-font-accent);
  font-size: var(--br-fs-24);
  font-weight: 700;
  margin-bottom: var(--br-space-md);
}
.br-404__message {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: var(--br-space-xl);
}
.br-404__btn {
  display: block;
  width: 100%;
  max-width: 300px;
  background: var(--br-color-yellow);
  color: var(--br-color-red);
  font-size: 20px;
  font-weight: 900;
  margin: var(--br-space-lg) auto 0;
  padding: 20px;
  border-radius: 10px;
}

@media (max-width: 599px) {
  .br-404__code {
    font-size: 40px;
  }
  .br-404__message {
    font-size: 16px;
  }
}