html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    background-color: #ebe5f5;
    color: #1d112e;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    /* Code below was for fancy font, which was deemed too hard to read */
    /*font-family: nk_mono, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 18px;*/
}
body.mobile {
    padding-top: 40px;
}
h1 {
    font-family: new_walt;
    font-size: 60px;
    text-align: center;
}
body.mobile h1 {
    font-size: 70px;
}
h1 small {
    color: #1d112e;
}
h2 {
    font-family: new_walt;
    font-size: 42px;
    margin: 24px auto 16px;
}
body.mobile h2 {
    font-size: 50px;
}
h3 {
    font-size: 20px;
}
button {
    font-size: inherit;
}
a[role="button"] {
    cursor: pointer;
}


/*** BOOTSTRAP CLASS OVERRIDES ***/
.btn-group {
    display: flex;
}
.btn-primary,
.btn-primary:focus {
    /*background-color: #Cfbfe7;*/
    background-color: #A587d2;
    border-color: #57348b;
    outline: none;
}
.btn-primary:hover,
.btn-primary.active,
.btn-primary.active:focus,
.btn-primary.active:hover {
    background-color: #57348b;
    border-color: #57348b;
    outline: none;
}


/*** General Classes ***/
.disney-font {
    font-family: new_walt;
}
.fancy-font {
    font-family: nk_mono, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.plain-font {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
}
.capitalize {
    text-transform: capitalize;
}
.strikethrough {
    text-decoration: line-through;
}
.light-text {
    color: white;
}
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;;
}
.text-right {
    text-align: right;
}
.hidden {
    display: none;
}
.clickable {
    cursor: pointer;
}
.fit-width {
    width: 100%;
}
.block {
    display: block;
}
.flex {
    display: flex;
}
.scroll-lock {
    overflow: hidden;
}
.dropdown-menu {
    font-size: inherit;
}

/*** Main Content ***/
.sparkle-canvas {
    z-index: 10;
}
.flower-border-wrapper {
    position: relative;
    width: 100%;
}
.flower-border {
    position: relative;
    margin: 0px auto;
    width: 1000px;
    max-width: 90%;
}
.page-background {
    position: fixed;
    left: 0;
    top: 0;
    min-width: 100%;
    min-height: 100%;
    opacity: 0.5;
    z-index: -10;
}
.main-content {
    /*padding-bottom: 50px;*/ /* This was with the flower border */
    padding: 30px 0px;
}
@media (max-width: 800px) {
    .main-content {
        padding: 0px 15px 20px;
    }
    .flower-border {
        display: none;
    }
}

/*** Page Content ***/
.content-header {
    font-family: new_walt;
    margin: 16px auto 48px;
}
.content-header span,
.content-header p {
    font-size: 28px;
}

.content-block {
    background-color: rgba(235, 229, 245, 0.6);
    border-radius: 16px;
    display: block;
    position: relative;
    padding: 12px;
}
.content-block h2 {
    margin-top: 8px;
}
.list-section-title {
    list-style: none;
    margin-left: -40px;
    font-weight: bold;
    padding-top: 8px;
}
.list-section-title:first-of-type {
    padding-top: 0px;
}

/*** Pictures ***/
.primary-picture {
    box-shadow: 0 1px 4px rgba(0,0,0,0.25);
    display: block;
    max-width: 78%;
    margin: 50px 0px;
    border: solid white 10px;
}

.border-picture {
    border: solid white 10px;
}

/*** Other Page Elements ***/
.footnote {
    /*font-size: 18px;*/
    margin-top: 28px;
}
