* {
  box-sizing: border-box;
}

:root {
  --font-sans: "Roboto", sans-serif;
  --text-main: #f5f5f5;
  --bg-page: #0a0a0c;
  --bg-grain: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20width%3D'200'%20height%3D'200'%3E%3Cfilter%20id%3D'g'%3E%3CfeTurbulence%20type%3D'fractalNoise'%20baseFrequency%3D'0.78'%20numOctaves%3D'4'%20stitchTiles%3D'stitch'%20result%3D't'%2F%3E%3CfeColorMatrix%20in%3D't'%20type%3D'saturate'%20values%3D'0'%20result%3D'gray'%2F%3E%3CfeComponentTransfer%20in%3D'gray'%20result%3D'out'%3E%3CfeFuncR%20type%3D'linear'%20slope%3D'0.1'%20intercept%3D'0.45'%2F%3E%3CfeFuncG%20type%3D'linear'%20slope%3D'0.1'%20intercept%3D'0.45'%2F%3E%3CfeFuncB%20type%3D'linear'%20slope%3D'0.1'%20intercept%3D'0.45'%2F%3E%3C%2FfeComponentTransfer%3E%3C%2Ffilter%3E%3Crect%20width%3D'100%25'%20height%3D'100%25'%20filter%3D'url(%23g)'%20opacity%3D'0.14'%2F%3E%3C%2Fsvg%3E");
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-sans);
  color: var(--text-main);
}

html {
  background-color: var(--bg-page);
}

html::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    var(--bg-grain),
    radial-gradient(ellipse 100% 75% at 50% 100%, rgba(0, 0, 0, 0.14), transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.2) 100%);
  background-size: 200px 200px, auto, auto;
  background-repeat: repeat, no-repeat, no-repeat;
  background-blend-mode: soft-light, normal, normal;
}

body {
  min-height: 100vh;
  display: grid;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow-x: hidden;
  background: transparent;
  z-index: 1;
}

.home {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-subline {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 8vw, 4.5rem);
  letter-spacing: 0.03em;
  text-transform: lowercase;
}

.home-link {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.home-link:hover {
  text-decoration: underline;
}
