@import url('https://fonts.googleapis.com/css2?family=Alegreya:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=CormorantGaramond:wght@400;500;600;700&display=swap');

* {
    box-sizing: border-box;
}

html {
    background: #000;
}

body {
    margin: 0;
    background: #000;
    color: #000;

    font-family: "Alegreya", serif;
    font-size: 17px;
    line-height: 1.6;
}

/* The sheet of paper */

.page {
    width: 940px;
    max-width: calc(100% - 30px);
    min-height: 100vh;

    margin: 28px auto 60px;
    padding: 0 58px 55px;

    background: #c8b897;

    box-shadow:
        0 3px 18px rgba(0, 0, 0, .35);
}


/* --------------------------------------------------
   HEADER
   -------------------------------------------------- */

header {
    padding: 55px 0 30px;
    text-align: center;

}

header h1 {
    margin: 0;

    color: #000000;

    font-family: "Cormorant Garamond", serif;
    font-size: 58px;
    font-weight: 500;
    line-height: .9;

}

.tagline {
    margin: 9px 0 0;

    color: #000000;

    font-size: 14px;
    font-style: italic;
}


/* --------------------------------------------------
   NAV
   -------------------------------------------------- */

nav {
    padding: 9px 0;

    border-top: 1px solid #a99d87;
    border-bottom: 1px solid #a99d87;

    font-size: 14px;
    text-align: center;
}

nav a {
    color: #000000;
    text-decoration: none;
}

nav a:hover {
    color: #000000;
    text-decoration: underline;
}

nav span {
    color: #000;
    margin: 0 6px;
}


/* --------------------------------------------------
   MAIN
   -------------------------------------------------- */

main {
    display: grid;
    grid-template-columns: 1fr 170px;
    gap: 55px;

    padding-top: 38px;
}


/* --------------------------------------------------
   WELCOME
   -------------------------------------------------- */

.welcome h2 {
    margin: 0 0 25px;

    color: #000000;

    font-size: 31px;
    font-weight: normal;
    line-height: 1.2;
}

.welcome p {
    max-width: 600px;
    margin: 0 0 19px;

    color: #000000;
}


.welcome button {
    margin-top: 12px;

    padding: 8px 17px;

    color: #000000;
    background: #624537;

    border: 1px solid #4b3328;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 13px;

    cursor: pointer;
}

.welcome button:hover {
    background: #000000;
    color: #ffffff;
}


/* --------------------------------------------------
   SIDEBAR
   -------------------------------------------------- */

.status {
    padding-top: 4px;
    padding-left: 24px;

    border-left: 1px solid #c9c0b1;
}

.status h2 {
    margin: 0 0 15px;

    color: #000000;

    font-size: 18px;
    font-weight: normal;
}

.status p {
    margin: 5px 0;

    color: #000000;
    font-size: 13px;
}

.status p:first-of-type {
    padding-bottom: 12px;
    margin-bottom: 12px;

    border-bottom: none;
}

.online {
    color: #000000;
}


/* --------------------------------------------------
   FOOTER
   -------------------------------------------------- */

footer {
    margin-top: 75px;
    padding-top: 15px;

    border-top: 1px solid #c9c0b1;

    color: #000000;

    font-size: 11px;
    text-align: center;
}


/* --------------------------------------------------
   LINKS
   -------------------------------------------------- */

a {
    color: #000000;
}

a:hover {
    color: #000000;
}


/* --------------------------------------------------
   MOBILE
   -------------------------------------------------- */

@media (max-width: 700px) {

    .page {
        width: 100%;
        max-width: none;

        margin: 0;
        padding: 0 25px 40px;
    }

    main {
        display: block;
    }

    .status {
        margin-top: 45px;
        padding: 20px 0 0;

        border-left: 0;
        border-top: 1px solid #c9c0b1;
    }

    header h1 {
        font-size: 36px;
    }
}

.single-column {
    display: block;
    padding-top: 48px;
}

.single-column article {
    max-width: 700px;
}

.single-column h2 {
    margin: 0 0 25px;

    color: #000000;

    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
}

.single-column h3 {
    margin: 38px 0 12px;

    color: #000000;

    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    font-weight: 500;
}

.single-column p {
    margin: 0 0 19px;
}

