@view-transition {
    navigation: auto;
}

:root {
    --bg-color: hsl(71, 27%, 92%);
    --text-color: hsl(0, 0%, 20%);
    --light-green: hsl(124, 37%, 53%);
    --green: hsl(149, 57%, 15%);
    --dark-green: hsl(157, 64%, 13%);
    --foreground-green: hsl(0, 0%, 100%);
    --foreground-light-green: hsl(0, 0%, 20%);
    --height-header: 50px;
    --orange: hsl(20, 49%, 27%);
    --orange-foreground: hsl(0, 0%, 87%);
    /* --bg-card: hsl(0, 9%, 87%); */
    --bg-card: hsl(0, 9%, 100%);

    --radius: 8px;
    --radius-xl: 16px;
    --bg-overlay: rgba(0, 0, 0, 0.3);
}


body {
    background-color: var(--bg-color);
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: var(--text-color);
}

header {
    background-color: var(--green);
    width: 100%;
    height: var(--height-header);
    color: var(--foreground-green);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 32px;
}

header .title {
    display: block;
    font-size: 1.25rem;
    font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-align: center;
    color: var(--green);
    font-weight: 700;
}

picture,
img,
figure {
    display: block;
}

p,
ul.list li,
ol.list li {
    max-width: 80ch;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.card {
    border-radius: var(--radius-xl);
    background-color: var(--bg-card);
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.space-section {
    margin-top: 40px;
    margin-bottom: 32px;
    padding: 8px;
}

.bg-green {
    background-color: var(--green);
    color: var(--foreground-green);
}

.bg-orange {
    background-color: var(--orange);
    color: var(--orange-foreground);
}

.bg-light-green {
    background-color: var(--light-green);
    color: var(--foreground-green);
}

.text-green {
    color: var(--green);
}

.text-orange {
    color: var(--orange);
}

.text-light-green {
    color: var(--light-green);
}

.text-foreground-green {
    color: var(--foreground-green);
}

ul.list>li:not(:last-child),
ol.list>li:not(:last-child) {
    margin-bottom: 16px;
}

ul.list li::before {
    content: "🍃";
    margin-right: 10px;
    font-size: 1.2em;
    line-height: 1;
    vertical-align: middle;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.w-full {
    width: 100%;
}


label {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="search"],
input[type="url"],
textarea {
    width: 100%;
    padding: 8px;
    border-radius: var(--radius);
    border: 1px solid var(--text-color);
    font-size: 1rem;
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
textarea:focus {
    outline-color: var(--green);
    accent-color: var(--green);
    /* border-color: var(--green); */

}