/* --- Import the Catppuccin palette --- */
/* You can use any CDN (choose one) */

/* via jsDelivr */
@import url('https://cdn.jsdelivr.net/npm/@catppuccin/palette/css/catppuccin.css');




/* --- Example usage --- */
body {
  background-color: var(--ctp-mocha-base);
  color: var(--ctp-mocha-text);
  text-align: center;
  padding: 50px;
  font-family: 'Lexend', sans-serif;

}
/* A styled box using different flavors */
.my-div {
  color:        var(--ctp-mocha-text);
  background:   rgba(var(--ctp-macchiato-base-rgb) / 0.9);
  border:       3px solid hsla(var(--ctp-frappe-red-hsl) / 0.75);
  border-radius: 12px;
  padding: 20px;
  display: inline-block;
  width: 300px;
  box-shadow: 0 0 20px rgba(var(--ctp-mocha-crust-rgb) / 0.4);
  font-family: 'Lexend', sans-serif;
}

.subtext {
  font-size: 0.85rem; /* smaller than <p> */
  color: var(--ctp-mocha-subtext1);
  display: block;
  margin: 1px 0 6px;
  font-family: 'Lexend', sans-serif;
}

h4 {
  font-size: 1rem;
  margin: 4px 0 2px; /* very tight spacing */
  font-weight: 600;
}

/* Links section */
.links {
  margin-top: 15px;
}

.links a {
  color: var(--ctp-mocha-rosewater);
  text-decoration: none;
  margin: 0 8px;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.links a:hover {
  color: var(--ctp-mocha-teal);
  text-decoration: underline;
}



