/* [project]/src/app/(frontend)/styles.css [app-client] (css) */
:root {
  --font-mono: "Roboto Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  background: #000;
  font-size: 18px;
  line-height: 32px;
}

html, body, #app {
  height: 100%;
}

body {
  color: #fff;
  margin: 0;
  font-family: system-ui;
  font-size: 18px;
  line-height: 32px;
}

@media (max-width: 1024px) {
  body {
    font-size: 15px;
    line-height: 24px;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1 {
  margin: 40px 0;
  font-size: 64px;
  font-weight: bold;
  line-height: 70px;
}

@media (max-width: 1024px) {
  h1 {
    margin: 24px 0;
    font-size: 42px;
    line-height: 42px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 38px;
    line-height: 38px;
  }
}

@media (max-width: 400px) {
  h1 {
    font-size: 32px;
    line-height: 32px;
  }
}

p {
  margin: 24px 0;
}

@media (max-width: 1024px) {
  p {
    margin: calc(var(--base) * .75) 0;
  }
}

a {
  color: currentColor;
}

a:focus {
  opacity: .8;
  outline: none;
}

a:active {
  opacity: .7;
  outline: none;
}

svg {
  vertical-align: middle;
}

body {
  line-height: normal;
}

.home {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  max-width: 1024px;
  height: 100vh;
  margin: 0 auto;
  padding: 45px;
  display: flex;
  overflow: hidden;
}

@media (max-width: 400px) {
  .home {
    padding: 24px;
  }
}

.home .content {
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.home .content h1 {
  text-align: center;
}

.home .links {
  align-items: center;
  gap: 12px;
  display: flex;
}

.home .links a {
  border-radius: 4px;
  padding: .25rem .5rem;
  text-decoration: none;
}

.home .links .admin {
  color: #000;
  background: #fff;
  border: 1px solid #000;
}

.home .links .docs {
  color: #fff;
  background: #000;
  border: 1px solid #fff;
}

.home .footer {
  align-items: center;
  gap: 8px;
  display: flex;
}

@media (max-width: 1024px) {
  .home .footer {
    flex-direction: column;
    gap: 6px;
  }
}

.home .footer p {
  margin: 0;
}

.home .footer .codeLink {
  background: #3c3c3c;
  border-radius: 4px;
  padding: 0 .5rem;
  text-decoration: none;
}

/*# sourceMappingURL=src_app_%28frontend%29_styles_0lew7-s.css.map*/