:root {
    --color-primary-1: #A47251;
    --color-primary-2: #DD9E59;
    --color-primary-3: #F0D8A1;
    --color-primary-3: #181717;

    --color-text-white: white;
    --color-text-black: black;

    --color-background-transparent: rgba(231, 208, 182, 0.973);

    --color-blueaky: #006AFF;
    --color-malevolent: #FF9A00;
}

* {
    font-family: 'Times New Roman', Times, serif;
}

body {
    background-image: url(/Assets/DW.gif);
}

header, nav, main, .author {
    background-color: var(--color-background-transparent);
}

spam {
    font-weight: bold;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 250px minmax(0, 1fr);
    min-height: 100vh;
}

.sidebar {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    background-color: var(--color-background-transparent);
    border-right: var(--color-primary-3) solid 3px;
}

.nav-title {
    margin: 0 0;
}

.nav-list {
    list-style: none;
    padding: 0;
    align-items: center;
}

.nav-button {
    border: none;
    color: var(--color-text-white);
    padding: 10px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 5px;
    cursor: pointer;
    width: 120px;
    background: var(--color-primary-3);
} 

.nav-button:hover {
    background-color: var(--color-primary-2);
    transition: all 0.3s ease;
}

.button-social {
    text-decoration: none;
    font-weight: bold;
    color: var(--color-blueaky);
}

.button-social:hover {
    color: var(--color-text-white);
    border: 1px solid var(--color-blueaky);
    background-color: var(--color-blueaky);
    border-radius: 3px;
    font-weight: bold;
}

header {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
    text-align: center;
    margin-top: 10px;
    font-size: 3rem;
    font-weight: bold;
    padding: 10px 0;
    font-family: 'Times New Roman', Times, serif;
    border-bottom: var(--color-primary-3) solid 3px;
}

.pronouns {
    font-size: 1rem;
    font-weight: normal;
}

.author {
    flex-shrink: 0;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 5px;
    border-bottom: var(--color-primary-3) solid 3px;
}

.author-image {
    width: 150px;
    border: 5px solid black;
    border-radius: 10px;
}

.author-text {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: normal;
}

.author-text-2 {
    margin-top: 3px;
    font-size: 0.8rem;
    font-style: italic;
}

nav {
    flex: 0 1 auto;
    max-height: 300px;
    overflow-y: auto;
    width: 100%;
    text-align: center;
    padding: 0 0 10px 0;
}

main {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    height: auto;
    background-color: var(--color-background-transparent);
    padding: 20px 35px;
    overflow-y: auto;
    line-height: 1.7;
}

main p {
    max-width: 700px;
    margin-bottom: 0.8rem;
}

.about-container {
    max-width: 700px;
    margin: 0;
}

.likes-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 700px;
}

.likes-list {
    padding-left: 20px;
    margin-top: 0;
}

.likes-list-item {
    margin-bottom: 8px;
}

.malevolent a {
    text-decoration: none;
    color: var(--color-text-black);
    font-weight: bold;
}

.malevolent a:hover {
    color: var(--color-malevolent);
    transition: all 0.3s ease;
}

footer {
    grid-row: 3 / 4;
    grid-column: 1 / 3;
    align-items: center;
    border-radius: 5px;
    text-align: center;
    padding: 10px 0;
    background-color: var(--color-primary-3);
    color: var(--color-primary-2);
    font-weight: bold;
}