/*
    RESET CSS FILE
    ...    
*/
* {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

/* Configuramos el texto que seleccionamos */
::-moz-selection {
  background-color: #f7faf8;
  color: #658573;
}
::selection {
  background-color: #f7faf8;
  color: #658573;
}

ul,
ol {
  list-style: none; /* Turn off numbered and unordered list decoration */
}

a {
  color: inherit;
  text-decoration: none; /* no underline */
}

img,
video,
svg {
  display: block;
  height: auto;
  max-width: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-size: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}
