@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ==========================
   Global
========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    background: #f3f3eb url('bg.png');
    color: #000000;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    line-height: 1.6;

    /* Sticky footer layout */
    display: flex;
    flex-direction: column;
}

/* ==========================
   Typography
========================== */

h1 {
    font-size: 32px;
    font-weight: 420;
    color: #000000;
    margin: 10px 0 10px 0;
}

h2 {
    font-size: 28px;
    font-weight: 420;
    color: #000000;
    margin: 10px 0 10px 0;
}

h3 {
    font-size: 24px;
    font-weight: 420;
    color: #000000;
    margin: 10px 0 10px 0;
}

strong,
b {
    color: #000000;
    font-weight: 350;
}

em,
i {
    color: #000000;
    font-style: italic;
}

a {
    color: #000000;
    border-bottom: 1px dotted #9d97c7;
    text-decoration: none;
}

a:hover {
    color: #000000;
    border-bottom: 1px dotted #000;
}

p {
    margin: 10px 0 20px 20px;
    font-weight: 200;
}

/* ==========================
   Main Layout
========================== */

.page {
    flex: 1;
    display: flex;
    justify-content: center;
}

.container {
    width: 816px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

/* ==========================
   Header Image
========================== */

.header img {
    display: block;
    width: 816px;
    max-width: 100%;
    height: auto;
}

/* ==========================
   Title
========================== */

.title {
    height: 75px;
    font-size: 45px;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ==========================
   Navigation
========================== */

.navigation {
    height: 30px;
    font-size: 22px;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
}

.navigation a {
    margin: 0 2px;
    text-decoration: none !important;
    border-bottom: 0;
}

.navigation a:hover {
    font-weight: 300;
    text-decoration: none !important;
}

/* ==========================
   Content
========================== */

.content {
    flex: 1;
    padding: 0px;
    margin: 35px 0;
}

/* ==========================
   Footer
========================== */

.footer {
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 25px 0 75px 0;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.2;
}

/* ==========================
   About Page Quotes
   ========================= */

.large-quote {
  position: relative;
  padding: 0 10px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 200;
  color: #341649;
  text-align: center;
}

.large-quote::before,
.large-quote::after {
  font-size: 1px;
  position: absolute;
  line-height: 1;
  color: #f3f3eb;
}

.large-quote::before {
  content: "“";
  left: 100px;
  top: -10px;
}

.large-quote::after {
  content: "”";
  right: 100px;
  bottom: -60px;
}

/* ==========================
   Mobile
========================== */

@media (max-width: 816px) {

    .container {
        width: 100%;
    }

    .title {
        height: auto;
        min-height: 75px;
        padding: 15px;
        font-size: 38px;
    }

    .navigation {
        height: auto;
        min-height: 30px;
        padding: 10px 15px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .content {
        padding: 20px;
    }

    .footer {
        height: auto;
        min-height: 75px;
        padding: 15px;
    }
}