@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700&family=PT+Serif:wght@400;600&display=swap');

:root {
    --nmvdq: hsl(45, 15%, 97%);
    --infrz: hsl(45, 15%, 100%);
    --fziwj: hsl(45, 10%, 15%);
    --aodlc: hsl(45, 10%, 45%);
    --zjbms: hsl(45, 66%, 38%);
    --guowl: hsl(225, 65%, 45%);
    --zrdnn: hsl(45, 15%, 88%);
    --yiast: 32px;
    --unvcz: none;
    --zfqpb: 'Syne', sans-serif;
    --vaoxo: 'PT Serif', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--nmvdq);
    color: var(--fziwj);
    font-family: var(--vaoxo);
    line-height: 1.7;
    padding: 20px;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

a {
    color: var(--zjbms);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--guowl);
    text-decoration: underline;
}

.container {
    width: 100%;
    max-width: 900px;
    background: var(--infrz);
    border: 1px solid var(--zrdnn);
    border-radius: var(--yiast);
    padding: 40px;
    box-shadow: var(--unvcz);
    margin: auto;
}

h1, h2, h3 {
    font-family: var(--zfqpb);
    margin-bottom: 20px;
    color: var(--fziwj);
}

h1 {
    font-size: 2.5rem;
    border-bottom: 3px solid var(--zjbms);
    padding-bottom: 12px;
}

p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

input, textarea, button {
    padding: 12px;
    border: 1px solid var(--zrdnn);
    border-radius: var(--yiast);
    font-family: var(--vaoxo);
    font-size: 1rem;
    background: var(--nmvdq);
    color: var(--fziwj);
}

button {
    background: var(--zjbms);
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

button:hover {
    background: var(--guowl);
}

footer {
    margin-top: 40px;
    border-top: 1px solid var(--zrdnn);
    padding-top: 20px;
    font-size: 0.9rem;
    color: var(--aodlc);
    text-align: center;
}
