/* src/styles.scss */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: normal;
  src: local("Lato Regular"), url("./media/Lato-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "EDITION_";
  font-style: normal;
  font-weight: normal;
  src: local("EDITION_"), url("./media/EDITION_.TTF") format("truetype");
  font-display: swap;
}
:root {
  --ink-100: #0c0b0b;
  --ink-80: #1f1d1c;
  --ink-60: #3a3634;
  --paper-100: #f7f5f1;
  --paper-80: #efede8;
  --paper-60: #e2ddd6;
  --accent-color: #3e7baf;
  --primary-color: var(--paper-100);
  --secondary-color: var(--ink-100);
  --grey-color: var(--ink-60);
  --surface-color: var(--paper-80);
  --surface-elevated: #ffffff;
  --menu-offset: 6.2rem;
  --menu-offset-mobile: 5rem;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  font-family: "Lato", sans-serif;
  margin: 0;
  min-height: 100vh;
  color: var(--secondary-color);
  font-size: 1.1em;
  line-height: 1.5;
}
h1 {
  font-family:
    "EDITION_",
    "Lato",
    sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  text-align: center;
  font-weight: normal;
  position: relative;
  color: var(--ink-100);
  margin: 0 0 1rem;
}
@media (max-width: 600px) {
  h1 {
    font-size: 2em;
  }
}
h1::after {
  content: "";
  display: block;
  width: min(220px, 40%);
  height: 3px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--accent-color),
      transparent);
  margin: 0 auto;
  margin-top: 10px;
}
@media (max-width: 600px) {
  h1::after {
    width: 40%;
    height: 4px;
  }
}
a {
  color: var(--secondary-color);
  transition: color 0.2s ease;
}
a:hover {
  color: var(--accent-color);
}
button {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
  padding: 0.6rem 1rem;
  font-size: 0.95em;
  color: #fefcf8;
  background:
    linear-gradient(
      145deg,
      #121111,
      #0a0a0a);
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.3s ease-in-out;
}
button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(12, 11, 11, 0.28);
}
button:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background:
    radial-gradient(
      circle,
      rgba(62, 123, 175, 0.32) 0%,
      rgba(62, 123, 175, 0) 80%);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.1);
}
button:hover:before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
@media (max-width: 767px) {
  :root {
    --menu-offset: var(--menu-offset-mobile);
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
