/*@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');*/
/**/
/*.merriweather-<uniquifier> {*/
/*  font-family: "Merriweather", serif;*/
/*  font-optical-sizing: auto;*/
/*  font-weight: <weight>;*/
/*  font-style: normal;*/
/*  font-variation-settings:*/
/*    "wdth" 100;*/
/*}*/
/**/
/*body {*/
/*  background-color: #123456;*/
/*  padding: 0% 20%;*/
/*}*/
/**/
/*h2 {*/
/*  color: #ff0055;*/
/*  font-family: merriweather;*/
/*  font-weight: 400;*/
/*  font-size: 48px;*/
/*  text-align: center;*/
/*}*/
/**/
/*p {*/
/*  color: #ff0055;*/
/*  font-family: calibri;*/
/*  font-size: 20px;*/
/*}*/
/**/
/*button {*/
/*  color: #ff0055;*/
/*  background-color: #123456;*/
/*  font-family: calibri;*/
/*  font-size: 20px;*/
/*  border-radius: 0.7rem;*/
/*}*/
/**/
/*button:hover {*/
/*  background-color: #563456;*/
/*}*/

/* Modern Developer Product Site CSS Baseline */

:root {
  --font-sans: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Fira Code', 'Source Code Pro', monospace;

  --color-bg: #550022;
  --color-bg-muted: #f9fafb;
  --color-text: white;
  --color-muted: #6b7280;
  --color-accent: #6366f1;
  --color-border: #e5e7eb;

  --radius: 0.75rem;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  --max-width: 1200px;
}

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

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
}

body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main {
  width: 100%;
  max-width: var(--max-width);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin: 0 0 1rem;
  line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }

p {
  margin-bottom: 1.25rem;
  color: var(--color-text);
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #4338ca;
}

button {
  font-family: inherit;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  background-color: var(--color-accent);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button:hover {
  background-color: #4338ca;
}

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background-color: #fff;
  width: 100%;
  margin-bottom: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--color-border);
}

.card {
  background-color: var(--color-bg-muted);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

nav {
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

nav a {
  margin-right: 1.5rem;
  font-weight: 500;
}

footer {
  margin-top: 4rem;
  padding-top: 2rem;
  font-size: 0.875rem;
  color: var(--color-muted);
  text-align: center;
  border-top: 1px solid var(--color-border);
}

