@import url("https://fonts.googleapis.com/css2?family=Outfit&family=Young+Serif&display=swap");

:root {
  --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%);
  --rose-800: hsl(332, 51%, 32%);
  --rose-50: hsl(330, 100%, 98%);
}

* {
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  padding: 0;
  margin: 0;
}

body {
  background-color: var(--stone-100);
}

ul,
ol {
  list-style-position: inside;
}

ul span,
ol span {
  margin-left: 10px;
  font-weight: bold;
}

ol > li::marker {
  font-weight: bold;
}

li {
  margin-bottom: 10px;
}

table {
  width: 100%;
}

table tr td {
  border-bottom: 1px solid var(--stone-150);
  padding: 10px 0;
}

td {
  padding-left: 20px;
}

tr:last-child td {
  border-bottom: none;
}

.mega-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.small-container {
  width: 100%;
  padding: 0;
  border-radius: 0;
  background-color: #ffffff;
}

.image-omelette {
  width: 100%;
  border-radius: 0;
  margin-bottom: 20px;
}

.container {
  padding: 30px;
}

.container > .heading {
  font-family: "Young Serif", serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--stone-900);
}

.normal-paragraph {
  line-height: 1.5rem;
  margin-bottom: 20px;
  color: var(--stone-600);
}

.pink-container {
  background-color: var(--rose-50);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
}

.pink-container > .heading {
  color: var(--rose-800);
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.section {
  line-height: 1.5rem;
  padding-bottom: 30px;
}

.section > .heading {
  font-family: "Young Serif", serif;
  color: var(--rose-800);
  font-weight: 400;
  font-size: 2rem;
  margin-bottom: 20px;
}

.divider {
  border-top: 1px solid var(--stone-150);
  margin-bottom: 40px;
}
.attribution {
  display: none;
  visibility: hidden;
}

.numbers {
  color: var(--rose-800);
  font-weight: bold;
}

@media screen and (min-width: 1024px) {
  .mega-container {
    margin: 4rem;
  }
  .small-container {
    width: 50%;
    padding: 35px;
    border-radius: 35px;
  }

  .image-omelette {
    border-radius: 10px;
  }

  .container {
    padding: 0;
  }
}
