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

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;
}

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

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

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

nav a {
    padding-right: 10px;
}

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;
    }
}
