/* Display setup */
/* ░≋░•░≋░○░≋░•░≋░○░≋░░≋░•░≋░○░≋░•░≋░○░≋░░≋░•░≋░○░≋░•░≋░○░≋░ */

/* Grid setup */
.display-wrap{
    display: flex;
    justify-content: space-evenly;
    padding: 33px;
    /* Will have to further play with these values */
}

/* Primary navigation bar */
.movement_nav{
    width: 250px;
    order: 1;
      
}

/* The secondary navigation bar*/
.velocity_nav{
    width: 250px;
    order: -1;
    margin-left: 10%;
    position: sticky;
    top: 300px;
}

/* Main content */
.feed{
    width: 500px;
    order: 0;
    flex-wrap: wrap;
    margin-right: 20%;
}

/* Image footer, outside of the grid wrap */
footer{
    position: fixed;
    bottom:0;
    background-image: url("../images/standard/border.png");
    background-repeat: repeat-x;
    overflow: hidden;
    width: 300%;
    height:80px;
}



/* Design setup */
/* ░≋░•░≋░○░≋░•░≋░○░≋░░≋░•░≋░○░≋░•░≋░○░≋░░≋░•░≋░○░≋░•░≋░○░≋░ */

/* Body */
body{
    background-color: #eedac4;
    background-image: url("../images/standard/background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    
    font-family: 'Tai Heritage Pro', serif;
    font-size: 16px;
    
    color: #a44d62;
    border-color: #e0aebb;
    outline-color: #e0aebb;
}

/* Headers */
h1{
    font-family: 'BIZ UDMincho', serif;
    font-size: 24px;
    letter-spacing: 5px;
    color: #5d6941;
    border-color: #ee7fb7;
    border-width: 1px;
    border-bottom-style: solid;
    padding-bottom: 4px;
}
h2{
    font-family: 'BIZ UDMincho', serif;
    font-size: 20px;
    color: #9d8379;
}
h3{
    font-family: 'BIZ UDMincho', serif;
    color: #e0aebb;
    font-size: 18px;
}

/* Links */
a{
    -webkit-transform: scale(1.2, 1);
    -moz-transform: scale(1.2, 1);
    -o-transform: scale(1.2, 1);
    transform: scale(1.2, 1);
    letter-spacing: 5px;
    color: #ee7fb7;
}

/* Details */
details{
    color: #9d8379;
    letter-spacing: 3px;
    font-size: 14px;
}

/* Small */
small{
    font-family: 'BIZ UDMincho', serif;
    font-size: 12px;
    font-weight: 600;
    color: #b79a8e;
}

/* Definitions */
dfn{
    font-weight: bold;
    font-style: normal;
    color: #5d6941;
}
.dropletter{
    font-family: 'Tai Heritage Pro', serif;
    background-color: #5d6941;
    color: #eedac4;
}


/* Main Navigation */
header{
    padding-top: 12px;
    padding-left: 12px;
    width: 12%;
    height: 700px;
    
    outline-width: 1px;
    outline-style: solid;
    outline-color: #e0aebb;
    background-color: #eedac4;
}

/* Velocity Navigation */
aside{
    max-width: 150px;
    height: 370px;
    padding: 12px;
    text-align: left;
    background-color: #eedac4;
    font-size: 11px;
}
aside summary{
    height: 200px;
    overflow-y: auto;
	padding-bottom: 10px;
}
aside h3{
    border-bottom-style: solid;
    border-width: 1px;
}
.velocity{
    position: absolute;
    z-index: -1;
    transform: translateX(-75%);
    bottom: 0px;
    
}

/* Feed */
section{
    background-color: #eedac4;
    margin-bottom: 12px;
    padding: 28px;
    width: 480px;
    outline-width: 1px;
    outline-style: solid;
    outline-color: #e0aebb;
}

.badge {
    background-color: #ee7fb7;
    color: #5d6941;
    padding: 4px 8px;
    text-align: center;
    border-radius: 1px;
    font-family: 'BIZ UDMincho', serif;
    font-size: 12px;
    font-weight: 600;
}
.num-label{
	font-family: 'BIZ UDMincho', serif;
	font-size: 400px;
	color: #e4c3be;
	text-shadow: 2px 8px 1px rgba(93, 105, 65, 0.28), 0px -5px 3px rgba(224, 174, 187, 0.28);
	z-index: -1;
	position: absolute;
	font-style: italic;
	transform: translateX(100%)translateY(-60%)skew(-12deg, 0deg);
	overflow: visible;
	
}



/* Responsiveness*/
/* ░≋░•░≋░○░≋░•░≋░○░≋░░≋░•░≋░○░≋░•░≋░○░≋░░≋░•░≋░○░≋░•░≋░○░≋░ */

/* Hides the Mobile Header when not in use. */
.mobile_header{
    display: none;
}

/* 1280px screen Acessibility */
@media (max-width:1280px){
    /* Hide extraneous elements */
    aside{
        display: none;
    }
}

/* Mobile Acessibility */
@media (max-width:950px){
    /* The lords of the land have been brought to rest. */
    aside, footer, header{
        display: none;
    }
    .display-wrap{
        flex-flow: column nowrap;
        justify-content: flex-start;
        
    }
    .mobile_header{
        display: flex;
        width: 100%;
        height: 300px;
    }
    .feed{
        width: 100%;
    }
    section{
        position: relative;
        width: 90%;
    } 
	.num-label{
		display: none;
	}
}