/* Design stolen from http://numi.io/ */
body {
	font: 100% 'Helvetica Neue', Helvetica, Arial, Sans-serif;
	-webkit-font-smoothing: antialiased; /* makes text smoother */
	margin: 0;
	background: #fff;
}



#navBar{
	top: 0;
	background: white;
    height: 70px;
    position: sticky;
    width: 100%;
    transition: box-shadow 0.3s;
}

#navBar span{
	font-family: 'Avenir',BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
}

.navItem{
	margin-right:30px;
	font-size:14px;
	text-transform: uppercase;
	font-weight: 600;
	float:right;
	transition: color 0.3s;
}

.navItem:hover{
	color:black;
}

.navItem#appNavItem{
	margin-right: 30px;
}

#contactNavItem, #appNavItem, #blogNavItem{
	margin-top: 24px;
}

.navLogo{
	float:left !important;
	font-family: 'Oleo Script', cursive !important;
	color: #14A2FF !important;
	text-transform: none;
	position: relative;
	top: 18px;
	margin-left: 20px;
}

.navLogo code {
	font-size: 14px;
}

a {
	color:inherit;
	text-decoration: inherit;
}

a:hover {
	color:inherit;
	text-decoration: inherit;
}

p + ul,ol {
    margin-top: -10px;
}

ul,ol{
	margin-bottom: 45px;
}

li {
	margin: 0px 0px 15px 0px;
	line-height: 23.6px;
}

hr {
	margin: 20px 0;
    border: 0;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #fff;
}

pre {
	white-space: break-spaces;
}

iframe{
	border: none;
}

.preWithNormalLook{
	font: 100% 'Helvetica Neue', Helvetica, Arial, Sans-serif;
	-webkit-font-smoothing: antialiased; /* makes text smoother */
	white-space: break-spaces;
}

.contactUsLink{
	cursor: pointer;
}

.inactiveNavItem{
	color: #B0BEC5;
}

#postTeasersContainer, .postContainer, #ideasContainer, .projectContainer{
	margin-top:50px;
	max-width: 680px;
	margin:auto;
}

#postTeasersContainer, #ideasContainer, .projectContainer{
	margin-top:130px;
}

.postContainer{
	margin-top:130px;
}

.postTitle, .title{
	text-decoration: none;
	color: #212a3e;
	font-size: 25px;
}

.postDate, .date{
	font-size: 16px;
    color: #B9B9B9;
    padding-top: 25px;
}

.postContainer, .postTeaser{
	margin-bottom:80px;
}

.postContent, .content{
	margin-top:25px;
	line-height: 25.6px;
}

.postContent a, .content a{
	color: #14A2FF;
	text-decoration: none;
	word-break: break-word;
}

/* Added 9/17/23 for long urls that aren't hyperlinked yet */
.postContent{
	/* These are technically the same, but use both */
	overflow-wrap: break-word;
	word-wrap: break-word;
}

.postContent a:hover, .content a:hover{
	color:#83bff7;
}

.postContent p, .content p{
	margin: 24px 0;
}

.postContent h2, .content h2{
	font-size: 25px;
	font-weight: 500;
}

.postContent h3, .content h3{
	font-size: 22px;
	font-weight: 400;
	margin-top:60px;
}

.readMoreButton{
	/*border: 1px solid #14A2FF;*/
	color: #14A2FF;
	border-radius: 50px;
	/*padding: 10px 20px;*/
	background: transparent;
	font-weight: 700;
	font-size: 13px;
	cursor: pointer;
	outline: none;
}

code{
	border-radius: 3px;
	border: 1px solid #e4e4e4;
	color: #444444;
	padding: 4px 6px;
	/*white-space: nowrap;*/ /* Removing so that really long code won't make the page wide */
	font-size: 13px;
	line-height: 27px;
	font-family: Menlo, monospace;
	margin-left: 3px;
	margin-right: 4px;
	background-color:white;	
}

pre code {
	border-radius: 6px;
    padding: 11px 19px;
    margin: 0px 100px 20px 0;
    border: 1px solid #EDEDED !important;
    line-height: 24px;
    font-size: 13px;
    border: 0px;
    white-space: break-spaces;
    margin-left: 0px;
    font-style: normal;
    display: block;
}

.singleLineImage{
	height: 2.5em;
}

.mediumImage, .mediumVideo{
    max-width: 75%;
    margin-left: 12.5%;
}

.footnote{
	font-size: 85%;
	word-break: break-word;
}

.superSmallFootnote{
	font-size: 65%;
	line-height: 15px;
}

.footnoteSuperscript{
	font-size: 75%;
	line-height: 0;

}

.smallerImage{
	max-width: 75% !important;
	margin-left: 12.5% !important;
}