
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    position: relative;
    text-align: center;
    height: 100%;
    background-color: #f2ebe5;
    color: #47543a;
    font-family: "Noto Sans", sans-serif;
    font-style: normal;
    font-variant-caps: normal;
    font-weight: 400;
    font-stretch: normal;
    font-size: 21px;
    line-height: 1.2;
    font-size-adjust: none;
    font-kerning: auto;
    font-optical-sizing: auto;
    font-variant-alternates: normal;
    font-variant-ligatures: normal;
    font-variant-numeric: normal;
    font-variant-position: normal;
    font-language-override: normal;
    font-feature-settings: normal;
    font-variation-settings: normal;
}

.container {
    width: clamp(320px, 95vw, 1080px);
    margin: 0 auto;
    padding: 0 5vw;
}

h1, h2, h3 {
    font-family: "Merriweather", serif;
    font-style: normal;
    font-variant-caps: normal;
    font-weight: 400;
}

h1 {
    font-size: 180%;
    margin: 1rem;
    line-height: inherit;
    color: #85441a;
}

h2 {
    font-size: 140%;
    margin: 1rem 0 1rem 0;
    line-height: inherit;
    color: #674a2c;
}

h3 {
    font-size: 120%;
    margin: 2rem 0 1rem 0;
    line-height: inherit;
}


footer {
    font-size: 70%;
    color: #674a2c;
    padding-top: 2rem;
    padding-bottom: 2rem; 
}

.banner {
    background-color: #e63946;
    color: white;
    padding: 10px; 
    width: 100%;
}

nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    justify-content: center;
    padding: 15px 0;
}

nav a {
    color: #1c5091;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

section {
    margin-top: 30px;
    padding: 10px;
}
