:root {
    --green: #16410f;
    --beige: #ded9c2;
    --btn-radius: 0.25rem;
}

html, body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body {
    padding: 1rem 2rem;
}

h1, h2, h3, h4 {
    font-family: "Atma", system-ui;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
}

a {
    color: var(--green);
    text-decoration: none;
}

.title-container {
    max-width: 700px;
    margin: 10rem auto 3.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
}

.title-container h2 {
    text-align: center;
    font-size: 2rem;
    position: relative;
}

.title-container svg {
    width: 100%;
    max-width: 70px;
    height: auto;
    fill: var(--green)
}

.fern {
    transform: rotate(-10deg);
}

.extra-info {
    width: 100%;
    max-width: 700px;
    background: url(../img/brushstroke.svg) center center / 100% 100% no-repeat;
    margin: 3rem auto;
    padding: 3rem 2rem;
    position: relative;
}

body.open-menu nav > ul {
    display: flex;
    animation: slideFadeIn 0.5s ease forwards;
}

@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(-1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

p {
    line-height: 1.6;
}