:root {
  --color-navy-blue: #3C486B;
  --color-teal: #16697A;
  --color-orange-primary: #DB6400;
  --color-bright-secondary: #FFA62B;
  --color-light-: #F8F1F1;

  --font-dm-sans:  "DM Sans", sans-serif;
  --font-figtree: "Figtree", sans-serif;

    --max-width: 1024;
}

h1 {
    color: var(--color-navy-blue);
    font-size: 3.2rem;
    font-weight: 900;
    font-family: var(--font-figtree);
}

span {
    font-size: 1.6rem;
    font-family: var(--font-dm-sans);

}

nav {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

nav a{
    font-size: 1.6rem;
    text-decoration: none;
    color: var(--color-orange-primary);
    font-family: var(--font-dm-sans);
    line-height: 150%;
    font-weight: 600;
}

section {
    min-height: 50vh;
    margin: 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

h2 {
    font-size: 4rem;
    color: var(--color-orange-primary);
    display: block;
    font-family: var(--font-dm-sans);
    font-weight: 900;
    margin-bottom: 40px;
    position: relative;
}
h2::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-2px);
  width: 10px;
  height: 10px;
  background-color: var(--color-navy-blue);
  border-radius: 50%;
}

p {
    font-size: 1.6rem;
    font-family: var(--font-figtree);
    line-height: 150%;
}

aside {
    max-width: 1024px;
    width: 100%;
    margin: 120px auto;
}

footer {
    max-width: 1024px;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

footer img {
    width: 80px;
    box-shadow: inset 10px 10px 10px 10px var(--color-bright-secondary);
}
footer p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
footer .container a {
    display: flex;
    justify-content: center;
    align-items: center;   
}

input:focus, textarea:focus{
    background-color: var(--color-bright-secondary);
}