/*!
Theme Name: basics
Theme URI: http://underscores.me/
Author: Pritpal Ajimal
Author URI: http://kikuchi-online.com
Description: A basic theme that needs to remain minimal and lean
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: basics
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

basics is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

/*
* Basics — Zavier Ellis
*/


/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
*/


/* BEM-like naming
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/*
.person {} is the Block; it is the sole root of a discrete entity. 
.person__head {} is an Element; it is a smaller part of the .person {} Block. 
.person--tall {} is a Modifier; it is a specific variant of the .person {} Block.
*/

/* Basic Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */

:root {
	--c-background--main: 				rgba(0, 0, 0,1);
	
	--c-text: 										rgba(200, 200, 200,1);
	--c-headings: 								#aaa;
	
	--c-links-main: 							rgba(150, 150, 150,0.9);
	--c-links-main__underline: 		rgba(170, 170, 170,0.9);
	--c-links-main--hover: 			  rgba(170, 170, 170,0.9);
	--c-links-nav__site: 				  rgba(255,107,0,0.3);
	--c-links-nav__site--hover: 	rgba(255,107,0,0.3);
	
	--c-site-header__background: 	transparent;/*rgba(255, 255, 255,0.9);*/
	--c-site-footer: 							rgba(0,0,0,0.4);
	--c-site-newsletter__background: rgba(255, 0, 42,1);;

	--content-width-1:            1200px;
	--gap: 1vmax;

	--font-main: 									'Work Sans', serif;
	--font-heading:               'Work Sans', serif;
}


* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

html {
  font-family: var(--font-main);
  font-size: 100%;
  background: var(--c-background--main);
  color: var(--c-text);
  line-height: 1.3;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-kerning: normal;
          font-kerning: normal;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%; }    

body {
	margin:0;
	padding:0;
	}




/*------------------------------------*\
  #WRAPPER
\*------------------------------------*/

.wrapper {
  margin: 0 auto;
  max-width: var(--content-width-1);
  padding-left: 2rem;
  padding-right: 2rem;
  width: 100%;    
}

@media all and (max-width: 40em) {
	.wrapper {
		max-width: 100%
	}
}
/*------------------------------------*\
  #PAGE
\*------------------------------------*/

.page {}






/*------------------------------------*\
  #PAGE-HEADER
\*------------------------------------*/

.page-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem;
  background-color: var(--c-site-header__background);
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.page-head-elements {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}

.widget-area {
	display: none;
}

.site-branding__description {
	display:  none;
}

.site-branding__title {
	margin: 0;
}

.site-nav__toggle {
	display: none;
}

.site-nav {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display:  flex;
	flex-direction: row;
}

.site-nav__main {
	position: fixed;
	bottom: 0rem;
	left: 0.3rem;
	transform-origin: left top;
  transform: rotate(-90deg) translateX(-2%);
}

.site-nav__main li {
	text-align: left;
	margin-right: 0.5rem;
}

.site-nav__socials {
	position: fixed;
	bottom:  0rem;
	right: -4.7rem;
  transform-origin: left top;
  transform: rotate(90deg) translateX(-94%);
}

.site-nav__socials li {
	text-align: right;
	margin-left: 0.5rem;
}

.entry-title {
	margin: 0;
	position: fixed;
	top: 0.5rem;
	right: 0.5rem;
	font-size: 1rem;
}

a { 
	color: var(--c-links-main);
	text-decoration: none; 
}

a:hover {
	color: var(--c-links-main--hover);
}

th:first-child, td:first-child {
    padding-left: 0;
}
th, td {
    padding: 0.5rem 0.8rem;
    text-align: left;
    border-bottom: 1px solid #333;
}

.ze {
    display: flex;
    height: 80vh;
    justify-content: center;
    align-items: center;
}
