:root {
    --nav-font: Arial, Helvetica, sans-serif; 
    --nav-height: 6vh;
    --UCLA-gold: #FFD100;
    --UCLA-blue: #2774AE;
    --UCLA-darkblue: #003B5C;
    --nav-darkblue: #05004a;
    --body-font: #212529;
    --heading: #1859c2;
}
html {
    overflow-x: hidden;
    font-family: var(--nav-font);
    /* font-size: 1.2em; */
}
body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 125%;
    color: var(--body-font)
}

/* element: paragraphs in the body text */
p {
    line-height: 150%;
    font-size: 18px;
}

a {
    color: black;
    text-decoration: none;
    font-size: 18px;
}
hr {
    width: 45%;
    color: silver;
    opacity: 0.5;
}
ul {
    margin: 0;
}
/* list */
li {
    margin-top: 12px;
    font-size: 18px;
    display: list-item;
    text-align: -webkit-match-parent;
}

h1 {
    margin-top: 0;
    /* text-align: center; */
    color: var(--heading);
}
img {
    max-width: 100%;
}
label {
    width: 100%;
    height: 100%;
    text-align: center;
}

#body {
    margin-top: var(--nav-height);
    min-height: calc(100vh - 2 * var(--nav-height));
}

.section {
    width: 60%;
    margin: auto;
    padding: 20px 0;
}

/* makes its children columns of the same row */
.col-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}

/* each column of col-wrapper */
.col {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.visual {
    margin: -5vh 0;
}
#three-word-pie {
    /* width: 60%; */
    max-height: 20em;
    margin: 0 10%;
}

#wordcloud {
    /* width: 60%; */
    max-height: 20em;
}