:root {
    --large-font: 1.3em;
    --small-font: .8em;
    --color-orange: rgba(246, 155, 0, 0.5);
    --color-pink: rgba(255, 44, 230, 0.3);
    --color-blue: rgba(26,124,160,100);
    --color-blue-25: rgba(26,124,160,.25);
    font-size: 16px;
}

body {
    background-color: white;
    margin:0;
    padding:0;
}

.large-font {
    font-size: var(--large-font);
}

.source {
    font-size: var(--small-font);
    font-style: italic;
}

dt {
    font-size: var(--large-font);
    margin-top: .5em;
}

.homepage-header {
    background-color: var(--color-blue);
    margin: 0;
    padding: 50px 20px 50px 20px;
    text-align: center;
    /*width: 100%;*/
    color: white;
    font-size: 3em;
    font-family: sans-serif;
}

.hc {
    text-align: center;
}

.box {
    width: 250px;
    height: 250px;
    border: 3px solid var(--color-orange);
    border-radius: .5em;
    margin-left: 3em;
    margin-right: 3em;
}

img {
    border-radius: .4em;
}

.spacing {
    margin-right: 5em;
}

.project {
    text-align: center;
}

.landing-title {
    font-size: 4em;
}

.fp-message {
    font-size: 1.2em;
    color: black;
}

.fp-message p {
    font-size: 1.2em;
}

.fp-message h2 {
    font-size: 1.6em;
}

.fp-footer {
    background-color: #383838;
    color: white;
    padding: 2px;
    font-size: .7em;
}

.fp-footer a {
    color: white;
    text-decoration: underline;
}

.fp-alert {
    border-top: 1px solid #dd4444;
    border-bottom: 1px solid #dd4444;
}

.fp-banner {
    background-color: #092866;
    color: #ebebeb;
}

.segment-header {
    background-color: var(--color-blue-25);

    /*color: var(--color-pink);*/
}

.no-border {
    border: 0;
}

.menu-button-width {
    width: 6em;
}

.card-border {
    border: 1px solid black;
    border-radius: 5px;
}