@import "crt.css";

/*====RESET====*/

*, *::before, *::after {
  box-sizing: border-box;
}

*:not(dialog) {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

#root, #__next {
  isolation: isolate;
}

/*=============*/


:root {
    --body-background-color: #000;
    --background-color: #0b0901;
    --text-color: #dddddd;
    --accent-color: #F7E48D;
    --line-color: #392F05;
    --font-family: 'IBM Plex Mono', monospace;
    --font-size-base: 16px;
    --font-size-lg: 1.33rem;
    --font-size-md: 1rem;
    --font-size-sm: 0.8rem;
    --font-weight-normal: 400;
    --font-weight-bold: 500;
    --font-weight-light: 200;
}

html, body {
    height: 100%;
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: 1.5;
}

body {
    display: grid;
    place-items: center;
    min-height: 100vh;
    margin: 0 auto;
}

img {
    max-height: 40vh;
}

h1{ 
    text-align: center;
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-light);
    margin-top:2rem;
    margin-left: 0.25rem;
    text-shadow: 0 0 20px rgba(247, 228, 141, 1);
}



h1::after {
  content: '_';
  animation: blink 1s infinite;
  margin-left: 0.25rem;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

a{
    color: inherit;
    text-decoration: none;
}







