/***************
 CSS RESET
 ***************/
@layer reset {
  *, *::before, *::after {
    box-sizing: border-box;
  }

  * {
    margin: 0;
    padding: 0;
  }

  body {
    line-height: 1.5;
  }

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

  input, button, textarea, select {
    font: inherit;
    letter-spacing: inherit;
    word-spacing: inherit;
    color: currentColor;
  }

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

  ol, ul {
    list-style: none;
  }

  :not([class]) {
    h1&, h2&, h3&, h4&, h5&, h6& {
      margin-block: 0.75em;
      line-height: 1.25;
      text-wrap: balance;
      letter-spacing: -0.05ch;
    }

    p&, ol&, ul& {
      margin-block: 1em;
    }

    ol&, ul& {
      padding-inline-start: 1.5em;
      list-style: revert;
    }

    li& {
      margin-block: 0.5em;
    }
  }
}


/* Fondo y tipografía base de la landing */
body {
	font-family: 'Atkinson Hyperlegible Next', 'Atkinson Hyperlegible', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    background-image: linear-gradient(to bottom, rgba(9, 25, 58, 0.82) 0%, rgba(15, 45, 75, 0.74) 48%, rgba(26, 58, 93, 0.7) 100%), url('../../fondo-estrellado.webp');
	background-repeat: no-repeat, repeat;
	background-attachment: fixed, fixed;
	background-size: 100% 100%, auto;
	background-position: top left, top left;
	background-color: #0B1931;
}

@media (max-width: 768px) {
	body {
		background-attachment: scroll, scroll;
		background-size: cover, auto;
	}
}
