html,
body,
div,
span,
applet,
object,
iframe,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
table,
caption,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
td,
th {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
/* Variables CSS: */

:root {
  --footer-text: hsl(228, 45%, 44%);
  --rose-50: hsl(330, 100%, 98%);
  --rose-800: hsl(332, 51%, 32%);
  --white: hsl(0, 0%, 100%);
  --stone-100: hsl(30, 54%, 90%);
  --stone-150: hsl(30, 18%, 87%);
  --stone-600: hsl(30, 10%, 34%);
  --stone-900: hsl(24, 5%, 18%);
  --brown-800: hsl(14, 45%, 36%);

  --font-young-serif: "Young Serif", serif;
  --font-outfit: "Outfit", sans-serif;

  --weight-young-serif-regular: 400;
  --weight-outfit-regular: 400;
  --weight-outfit-semibold: 600;
  --weight-outfit-bold: 700;

  --fs-paragraph: 16px;
}
/* Estilos base: */

body {
  min-width: 375px;
  background-color: var(--stone-100);
  margin-top: 0;
  margin-bottom: 100px;
}
.wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--white);
}
.outer-container {
  margin: 0;
  padding: 0 16px;
  text-align: left;
}
.container {
  margin: 0 14px;
  font-family: var(--font-outfit);
  font-weight: var(--weight-outfit-regular);
}
.container h1 {
  font-size: 2.5em;
  font-weight: 500;
  font-family: var(--font-young-serif);
  margin-bottom: 24px;
}
.banner-rose{
  background-color: var(--rose-50);
  padding: 30px;
  border-radius: 20px;
  display: flex;
  align-content: center;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
/* Tipografía y encabezados: */

h2 {
  color: var(--brown-800);
  font-family: var(--font-young-serif);
  font-size: 1.8em;
  font-weight: var(--weight-young-serif-regular);
}
span {
  font-size: 1.1em;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
  font-family: var(--font-outfit);
  color: var(--rose-800);
}
p,
li {
  font-family: var(--font-outfit);
  font-size: var(--fs-paragraph);
  margin-left: 0;
  line-height: 1.6;
  color: var(--stone-600);
}
/* Listas: */

ul {
  margin-left: 10px;
  margin-bottom: 0;
  padding-left: 20px;
}
li {
  padding-left: 20px;
  padding-bottom: 10px;
}
li::marker {
  color: var(--brown-800);
}
ol {
  margin-right: 50px;
  padding-left: 20px;
  color: var(--brown-800);
  font-family: var(--font-outfit);
  font-weight: 800;
}
ol li {
  font-weight: 100;
}
ol li::marker {
  font-weight: 700;
}

li:last-child{
  padding-bottom: 0;
} 
/* Tablas: */

table {
  font-family: var(--weight-outfit-regular);
  width: 87%;
  border-collapse: collapse;
}
th {
  font-weight: 100;
  padding-left: 20px;
  color: var(--stone-600);
}
td {
  line-height: 2em;
  font-weight: var(--weight-outfit-semibold);
  color: var(--brown-800);
}
tr {
  border-bottom: 0.5px solid var(--stone-150);
}
tr:last-child {
  border-bottom: none;
}
/* espaciado y separadores:  */

hr {
  color: var(--stone-100);
}
.spacer {
  border: none;
  height: 30px;
  background: none;
}
/* Estilos responsivos: */

@media (min-width: 768px) {
  .img {
    margin: 39px 40px 0 40px;
    border-radius: 12px;
    border-bottom-left-radius: 17px;
    border-bottom-right-radius: 17px;
    overflow: hidden;
    margin-bottom: 38px;
  }

  .wrapper {
    padding-top: 1px;
    border-radius: 24px;
    padding-bottom: 20px;
    max-width: 736px;
  }
  .container {
    padding: 0 10px;
  }
  body{
    margin-top: 123px;
    margin-bottom: 100px;
  }
}
