/* = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/* - - - - - - - - - - <~=[ ELEMENTS ]=~> - - - - - - - - - - */
/* = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

* {
  margin: 0; /* Reset Margin */
  padding: 0; /* Reset Padding */
}
html {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  color: #cccccc; /*  Default Color */
  background-color: #1a1a1a; /* Default Background Color */
  font-family: 'Trebuchet MS', sans-serif; /* Default Font Family */
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.1px;
}
header, footer {
  background-color: #141414;
}
header {
    border-bottom: solid 2px #4d4d4d;
}
footer {
  padding: 0.5em;
  border-top: solid 2px #4d4d4d;
}
body, main{
  width: 100%;
  height: 100%;
  min-height: 100vh;
}
h1 {
  margin: 0.5em;
}
p {
  margin: 0.5em;
}
hr {
  border: none;
  height: 2px;
  margin: 1em 0em;
  color: transparent;
  background-color: transparent;
  background: linear-gradient(to right, rgba(0,0,0,0) 20%, #4d4d4d 50%, rgba(0,0,0,0) 80% );
}

/* = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/* - - - - - - - - - - <~=[ CLASSES ]=~> - - - - - - - - - - */
/* = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.title {
  font-size: 20px;
}
.container {
  padding: 1em;
}
.flex {
  display: flex;
}
.flex-dir-col {
  flex-direction: column;
}
.flex-dir-row {
  flex-direction: row;
}
.flex-center {
  justify-content: center;
  align-content: center;
}
.text-center {
  text-align: center;
}
.text-shadow {
  text-shadow: 0px 0px 1 rgba(0,0,0,1);
}
.text-glow {
  text-shadow: 0px 0px .5em rgba(255,255,255,0.25);
}
.text-caps {
  text-transform: uppercase;
}
.text-light {
  font-weight: 0;
  font-style: normal;
}
.alpha-50 {
  opacity: 0.5;
}



