/* pinkstyle.css */

:root {
  --bg: #fdf6f8;
  --text: #2b1b1d;
  --accent: #d4377b;
  --header: #990f4b;
  --font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 2rem;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  background-color: var(--bg);
  color: var(--text);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

h1, h2, h3 {
  color: var(--header);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.3rem;
}

ul {
  padding-left: 1.5rem;
  list-style-type: disc;
}

li {
  margin-bottom: 0.5rem;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  body {
    padding: 1rem;
    font-size: 15px;
  }
}

