body {
    background-color: #1B171E;
    color: #CDC2B5;
    font-family: CrimsonTextRegular;
    background-size: 100vw;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    background-image: url("./Resources/Images/butterflyBackground.png");
    background-repeat: repeat;
    background-size: 256px;
}

.butterflyBody {
    background-image: url("./Resources/Images/butterflyEdge.png"), url("./Resources/Images/butterflyBackground.png");
    background-repeat: repeat-y, repeat;
    background-position: right, left;
    background-size: 30vw, 256px;
}

.maxHeight {
    height: 100%;
}

.pixel {
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.butterflyEdgeDiv {
    padding-right: calc(30vw / 2) !important;
}

a {
    color: #F9F6F0;
    font-weight: bold;
}
a:visited {
    color: #b9cfda;
}
a:hover {
    color: #CDC2B5;
}
a:active {
    color: #E9657E;
}


.topBar {
    width: 100vw;
    height: 2em;
    position: sticky;
    top: 0;
    margin: none;
    padding: none;
    background-color: rgb(16, 16, 16);
    font-family: CrimsonTextBold;
    font-size: calc(2vw + 12px);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0.5vw 3vw rgb(0, 0, 0);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.topBarItem {
    height: inherit;
    display: flex;
    padding: 0 0.5em;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}
.topBarItem span {
    color: #b9cfda;
}

.topBarItem span:hover {
    color: #CDC2B5;
}
.topBarItem:active {
    background: #E9657E;
}
.topBarItem:active span{
    color: rgb(32, 32, 32);
}

#bottomBar {
    min-height: 5px;;
    position: fixed;
    min-width: 100vw;
    bottom: 0;
    background-color: black;
    margin: 0px;
    box-shadow: 
        0px -1vw 2vw rgb(0, 0, 0),
        0px -1vw 2vw rgb(0, 0, 0),
        0px -1vw 2vw rgb(0, 0, 0)
    ;
}

.popText {
    
    display: inline-block;
    color: #F9F6F0;
    text-shadow: #302d38 1px 1px;
    
}


.paddingDiv {
    padding: 20px;
}

.noSelect {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.italic {
    font-style: italic;
}

.bold {
    font-weight: bold;
}

.redAccent {
    color: #E9657E;
}

.blueAccent {
     color: #b9cfda;
}

.italicBold {
    font-style: italic;
    color: #E9657E;
    font-weight: bold;
}

.centerText {
    text-align: center !important;
}

.textAlignLeft {
    text-align: left;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.storyTitle {
    text-align: center;
    display: flex;
    justify-content: center;
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

.storyDate {
    display: flex;
    justify-content: center;
    color: rgb(164, 164, 164);
    margin-top: -20px;
    margin-bottom: -10px;
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

.storyBody {
    text-indent: 2em;
    margin-left: 5%;
    margin-right: 5%;
    text-align: left;
    width: clamp(0px, 90%, 650px);


    font-weight: normal;
    margin-bottom: 6px;
    line-height: 1.33;
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

.textSelect {
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

.storyBlurb {
    max-width: 512px;
}

.storyBulletList {
    margin-left: 5%;
    margin-right: 5%;
    max-width: 650px;
    font-weight: normal;
    margin: auto;
    margin-bottom: 6px;
    line-height: 1.33;
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

@font-face {
    font-family: CrimsonTextRegular;
    src: url(./Resources/Crimson_Text/CrimsonText-Regular.ttf);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: CrimsonTextBold;
    src: url(./Resources/Crimson_Text/CrimsonText-Bold.ttf);
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: CrimsonTextItalic;
    src: url(./Resources/Crimson_Text/CrimsonText-Italic.ttf);
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: CrimsonTextBoldItalic;
    src: url(./Resources/Crimson_Text/CrimsonText-BoldItalic.ttf);
    font-weight: bold;
    font-style: italic;
}