:root {
    --bg-color: #cce7ff;
    --text-color: #00264d;
    --main-width: 40%;
}

p { 
    margin: 8px 0px;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-color);
    color: var(--text-color);
}


content, header {
    width: var(--main-width);
    display: flex;
    flex-direction: column;
}


ul {
    list-style: none;
    padding: 0px;
}

li {
    margin: 1rem 0;
}

h1 {
    border-bottom: 2px solid black;
    margin-bottom: 8px;
    margin-top: 8px;
}

.blog-post-link {
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    font-weight: bold;
}

nav {
    margin-top: 24px;
    width: var(--main-width);
    display: flex;
    justify-content: left;
}

nav a {
    padding-right: 10px;
}

.spacer {
    font-weight: bold;
}

blockquote {
  margin: 0 0 16px;
  padding: 0 1em;
  color: var(--text-color);
  border-left: 0.25em solid var(--text-color);
}

@media (max-width: 768px) {
    content {
        width: auto;
        margin: 1rem;
    }
    nav {
        align-self: flex-start;
        width: auto;
        display: flex;
        justify-content: left;
        margin-left: 1rem;
    }
}

button {
    color: red;
    background-color: chartreuse;
    border-radius: 5px;
    width: 5rem;
    height: 2rem;
    font-weight: bold;
    font-size: large;
}

button:hover {
    background-color: blue;
    cursor: pointer;
}
