body {
    font-family: Raleway, sans-serif;
    background-color: #eee;
    display: flex;
    flex-direction: column;
}

div#header {
    font-size: 2rem;
    text-align: right;
    margin-bottom: 1rem;
}
div#container {
    display: flex;
    flex-direction: row;
}
div#menu {
    height: 100%;
    flex: 0 1 15rem;
}

div#content {
    flex: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

div#menu ul {
    list-style-type: none;
    font-size: 2rem;
    margin: 0;
    padding: 0;
}

div.project-icon {
    flex: 0 1 33%;
    text-align: center;
    margin-bottom: 1em;
}
div.project, div.note, div.books {
    padding: 1em 2em 1em 2em;
    width: 100%;
    clear: both;
    overflow: auto;
    background-color: white;
}

div.note h1 {
    margin: 0;
    padding: 0;
    font-size: 3rem;
    text-align: center;
}

h2 {
    font-size: 2rem;
    padding: 0;
    margin: 0;
}
h3 {
    font-size: 1.5rem;
}
p.medium {
    font-size: 1rem;
    font-style: italic;
}
div.example-tweets, div.example-images {
    float: right;
    width: 400px;
    margin-left: 1em;
}

div.example {
    margin: 0.5em;
    padding: 1em;
    background-color: #eee;
    clear: both;
    overflow: auto;
}

div.controlset {
    overflow: auto;
}
div.control {
    padding: 0.5em;
    float: left;
}

div.output {
    padding: 0.5em;
    clear: both;
}

div.book {
    padding-top: 1em;
}

.book .title {
    font-weight: bold;
    font-size: 1.5rem;
}

.book  .author {
    font-style: italic;
    font-size: 1.5rem;
}
div#footer {
    clear: both;
    font-size: small;
    text-align: center;
}

button {
    font-size: large;
    background-color: white;
    color: black;
    border-radius: 0.5rem;
    border: 1px solid black;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

button:hover {
    background-color: black;
    color: white;
}


select {
    background-color: white;
    border: solid 1px black;
    font-size: medium;
    margin-left: 0.5rem;
}

figcaption {
    text-align: center;
}