/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/

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

* {
  line-height: 0;
  margin: 0;
}

:root {
  interpolate-size: allow-keywords;
}

body {
  -webkit-font-smoothing: antialiased;
}

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

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

input::placeholder {
  color: inherit;
  opacity: 1;
}

a, p, h1, h2, h3, h4, h5, h6, button, span, aside, section {
  line-height: calc(1em + 0.5rem);
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}
:root {
    --dm-sans: 'DM Sans', Helvetica, sans-serif;
    --league-script: 'League Script', cursive;
    --cutive: 'Cutive', Courier, monotype;

    --black: rgba(0, 0, 0, 0.87);
    --white: #FFFFFC;

    --dusk-blue: #464D77;
    --soft-blush: #FFD9DA;
    --yellow: #FBFF12;
    --neon-pink: #FF206E;
    --deep-walnut: #4C2E05;

    --default-font-size: calc(1rem + 0.5vw);


    font-size: var(--default-font-size);
}

.font-dm-sans {
    font-family: var(--dm-sans);
    font-weight: 300;
    letter-spacing: -5%;
}

.font-league-script {
    font-family: var(--league-script);
    font-size: 1.5em;
    letter-spacing: normal;
}

.font-cutive {
    font-family: var(--cutive);
    letter-spacing: normal;
}

.bg-primary-color {
    background-color: var(--white);
}

.text-primary-color {
    color: var(--black);
}

.text-primary-font {
    font-family: var(--dm-sans);
    font-weight: 300;
    letter-spacing: -5%;
}

strong {
    font-weight: 600;
}

img {
    height: auto;
    width: 100%;
}
main {
    align-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    padding: 2rem 0;
}

main > * {
    max-width: 20rem;
    text-align: center;
    place-content: center;
}

.sewing-background-image {
    background-image: url("/assets/border.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 1rem 1.5rem;
}

.bg-primary-color {
    background-color: var(--soft-blush);
}

.text-primary-color {
    color: var(--dusk-blue);
}

.text-highlight-color {
    color: var(--neon-pink);
}

h1 {
    font-weight: 300;
    line-height: .25;
    margin: 2rem 0 1rem;
}

h1 > * {
    font-weight: inherit;
}

img {
    display: inline-block;
    width: 10rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: inherit;
}

a:hover, a:active {
    color: var(--yellow);
    text-decoration: none;
}

.text-size-small {
    font-size: .75rem;
}

b, strong {
    font-weight: 600;
}

ul {
    padding: 0;
}

li {
    align-items: center;
    border-bottom: 1px dashed var(--yellow);
    display: flex;
    justify-content: space-between;
    line-height: 1.2;
    padding: .75rem;
    text-align: left;
}

li:last-child {
    border: 0;
}

.alt {
    flex-basis: 60%;
}

