@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@700&family=Crimson+Pro:wght@400;600&display=swap');

:root {
    --trobv: hsl(53, 12%, 8%);
    --abmnq: hsl(53, 12%, 13%);
    --dyfos: hsl(53, 8%, 88%);
    --cewed: hsl(53, 8%, 60%);
    --lkhde: hsl(53, 69%, 65%);
    --nqdeb: hsl(293, 70%, 65%);
    --sfwkf: hsl(53, 12%, 18%);
    --aswgb: 6px;
    --jgsfc: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --okcuf: 'Fraunces', sans-serif;
    --yxctp: 'Crimson Pro', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--trobv);
    color: var(--dyfos);
    font-family: var(--yxctp);
    line-height: 1.7;
    padding: 20px;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

a {
    color: var(--lkhde);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--nqdeb);
    text-decoration: underline;
}

.wrapper {
    width: 100%;
    max-width: 900px;
    background: var(--abmnq);
    border: 1px solid var(--sfwkf);
    border-radius: var(--aswgb);
    padding: 40px;
    box-shadow: var(--jgsfc);
    margin: auto;
}

h1, h2, h3 {
    font-family: var(--okcuf);
    margin-bottom: 20px;
    color: var(--dyfos);
}

h1 {
    font-size: 2.5rem;
    border-bottom: 3px solid var(--lkhde);
    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(--sfwkf);
    border-radius: var(--aswgb);
    font-family: var(--yxctp);
    font-size: 1rem;
    background: var(--trobv);
    color: var(--dyfos);
}

button {
    background: var(--lkhde);
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

button:hover {
    background: var(--nqdeb);
}

footer {
    margin-top: 40px;
    border-top: 1px solid var(--sfwkf);
    padding-top: 20px;
    font-size: 0.9rem;
    color: var(--cewed);
    text-align: center;
}
