@import url('https://fonts.googleapis.com/css2?family=Cantarell:ital,wght@0,400;0,700;1,400;1,700&family=Trocchi&display=swap');

/* ==========================
   RESET
========================== */

* {
    margin: 0;
    padding: 0;
}

/* ==========================
   BODY
========================== */

body {
    background: #f5f5f5 url('bg.png');
    color: #6c6367;
    font-family: "Cantarell", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 1.7;
}

/* ==========================
   MAIN WRAPPER
========================== */

.container {
    width: 1100px;
    margin: 0 auto;
}

/* ==========================
   HEADER
========================== */

.header {
    width: 1100px;
    height: 416px;
    background: url('head4.png') no-repeat center center;
    background-size: cover;
}

/* ==========================
   NAVIGATION
========================== */

.navigation {
    width: 850px;
    margin: 10px auto 10px auto;
    position: relative;
    z-index: 10;
    margin-top: -30px;
}

.navigation ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navigation a {
    color: #833e2a;
    text-decoration: none;
    font-family: "Trocchi", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 26px;
}

.navigation a:hover {
    color: #454843;
    text-decoration: none !important;
}

/* ==========================
   CONTENT
========================== */

.content {
    margin: 0 50px;
}

/* ==========================
   FOOTER
========================== */

.footer {
    margin: 20px 0;
    text-align: center;
    color: #abbdc1;
    font-family: "Cantarell", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
}

.footer a {
    color: #abc1b1;
    text-decoration: none;
    font-family: "Cantarell", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
}

.footer a:hover {
    color: #abbdc1;
    text-decoration: underline dotted #f0bf1f 1px;
}

/* ==========================
   TEXT STYLES
========================== */

p {
    margin: 0 30px 20px 30px;
    word-spacing: 2px;
}

p,
li,
td,
blockquote {
    color: #595255;
    font-family: "Cantarell", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
}

a {
    color: #6c7e5e;
    text-decoration: underline dotted #f0bf1f 1px;
    font-family: "Cantarell", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
}

a:hover {
    color: #4e5f66;
    text-decoration: underline solid #f0bf1f 1px;
}

b {
    color: #e17556;
    font-family: "Trocchi", serif;
}

strong {
    color: #627c87;
}

strong,
b, strong a, b a {
    font-family: "Trocchi", serif;
    font-weight: 550;
    font-style: normal;
    font-size: 18px;
}


em,
i {
    color: #93a9ae;
    font-family: "Trocchi", serif;
    font-weight: 350;
    font-style: italic;
    font-size: 18px;
}

/* ==========================
   HEADINGS
========================== */

h1 {
    color: #5a6b72;
    font-family: "Trocchi", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    margin-bottom: 15px;
}

h2 {
    color: #5a6b72;
    font-family: "Trocchi", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 26px;
    margin-bottom: 12px;
}

h3 {
    color: #5a6b72;
    font-family: "Trocchi", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    margin-bottom: 10px;
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 1150px) {

    .container {
        width: 100%;
    }

    .header {
        width: 100%;
        height: auto;
        aspect-ratio: 1100 / 461;
        background-size: contain;
        background-position: center top;
    }

.navigation {
    width: auto;
    margin: 10px;
}

    .navigation ul {
        flex-direction: column;
        gap: 15px;
    }

    .navigation a {
        font-size: 26px;
    }

    .content {
        margin: 0 20px;
    }

    .footer {
        margin: 20px;
    }

    body,
    p,
    li,
    td,
    blockquote,
    a,
    strong,
    b,
    em,
    i {
        font-size: 18px;
    }
}