

/**
*** SIMPLE GRID
*** (C) ZACH COLE 2016
**/

@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* UNIVERSAL */

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  left: 0;
  top: 0;
  font-size: 100%;
  background-color: #090909;
}

/* ROOT FONT STYLES */

* {

    font-family: 'Space Mono', Courier, monospace;
    color: #b2b2b2;
    font-size: 12px;
}

a {
  text-decoration: underline;
  transition: 0.3s;
}

a:hover {
  color: #ffffff;
}
/* TYPOGRAPHY */

h1,h2,h3,h4,h5,h6 {
  font-weight: normal;
}

h1 {
  font-size: 2.125rem;
}

h2 {
  font-size: 1.875rem;
}

h3 {
  font-size: 1.625rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

p {
  font-size: 0.75rem;
  font-weight: 200;
  line-height: 1.5;
}

.font-light {
  font-weight: 300;
}

.font-regular {
  font-weight: 400;
}

.font-heavy {
  font-weight: 700;
}

/* POSITIONING */

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.justify {
  text-align: justify;
}

/* ==== GRID SYSTEM ==== */

.container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.row {
  position: relative;
  width: 100%;
}

.row [class^="col"] {
  float: left;
  margin: 0.5rem 2%;
  min-height: 0.125rem;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  width: 96%;
}

.col-1-sm {
  width: 4.33%;
}

.col-2-sm {
  width: 12.66%;
}

.col-3-sm {
  width: 21%;
}

.col-4-sm {
  width: 29.33%;
}

.col-5-sm {
  width: 37.66%;
}

.col-6-sm {
  width: 46%;
}

.col-7-sm {
  width: 54.33%;
}

.col-8-sm {
  width: 62.66%;
}

.col-9-sm {
  width: 71%;
}

.col-10-sm {
  width: 79.33%;
}

.col-11-sm {
  width: 87.66%;
}

.col-12-sm {
  width: 96%;
}

.row::after {
	content: "";
	display: table;
	clear: both;
}

.hidden-sm {
  display: none;
}

@media only screen and (min-width: 33.75em) {  /* 540px */
  .container {
    width: 80%;
  }
}

@media only screen and (min-width: 45em) {  /* 720px */
  .col-1 {
    width: 4.33%;
  }

  .col-2 {
    width: 12.66%;
  }

  .col-3 {
    width: 21%;
  }

  .col-4 {
    width: 29.33%;
  }

  .col-5 {
    width: 37.66%;
  }

  .col-6 {
    width: 46%;
  }

  .col-7 {
    width: 54.33%;
  }

  .col-8 {
    width: 62.66%;
  }

  .col-9 {
    width: 71%;
  }

  .col-10 {
    width: 79.33%;
  }

  .col-11 {
    width: 87.66%;
  }

  .col-12 {
    width: 96%;
  }

  .hidden-sm {
    display: block;
  }
}

@media only screen and (min-width: 60em) { /* 960px */
  .container {
    width: 75%;
    max-width: 60rem;
  }
}

.logo { margin: 100px -50px 50px; }
.green { color: #c1cfa1; }
.purple { color: #574964;}

/* General Reset */

/* --- SPACING (Gap, Margin, Padding) --- */
.gap-0 { gap: 0px; }
.gap-1 { gap: 5px; }
.gap-2 { gap: 10px; }
.gap-3 { gap: 15px; }
.gap-4 { gap: 20px; }
.gap-5 { gap: 25px; }

.m-0 { margin: 0px; }
.m-1 { margin: 10px; }
.m-2 { margin: 15px; }
.m-3 { margin: 20px; }
.m-4 { margin: 25px; }
.m-5 { margin: 30px; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 15px; }
.mt-3 { margin-top: 20px; }
.mt-4 { margin-top: 25px; }
.mt-5 { margin-top: 30px; }

.mt-link { margin-top: 50px; }
.mt-link-socials { margin-top: 10px; }
.text-link { font-size: 11px; letter-spacing: 1.1px; text-decoration: none; background-color: #0b0b0b; padding: 20px}
.text-link-clear { font-size: 11px; letter-spacing: 1.1px; text-decoration: none;}
.text-link-socials { font-size: 11px; letter-spacing: 1.1px; text-decoration: none;}


.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 15px; }
.mb-3 { margin-bottom: 20px; }
.mb-4 { margin-bottom: 25px; }
.mb-5 { margin-bottom: 30px; }

.p-0 { padding: 0px; }
.p-1 { padding: 5px; }
.p-2 { padding: 10px; }
.p-3 { padding: 15px; }
.p-4 { padding: 20px; }
.p-5 { padding: 25px; }

.pt-1 { padding-top: 10px; }
.pt-2 { padding-top: 15px; }
.pt-3 { padding-top: 20px; }
.pt-4 { padding-top: 25px; }
.pt-5 { padding-top: 30px; }

.pb-1 { padding-bottom: 10px; }
.pb-2 { padding-bottom: 15px; }
.pb-3 { padding-bottom: 20px; }
.pb-4 { padding-bottom: 25px; }
.pb-5 { padding-bottom: 30px; }

.spacing { margin: 100px 0 100px 0; }

/* --- FONT STYLES --- */

.small { font-size: 80%;}
.fw-light { font-weight: 300; }
.fw-normal { font-weight: 400; }
.fw-bold { font-weight: 700; }

.fs-sm { font-size: 12px; }
.fs-md { font-size: 16px; }
.fs-lg { font-size: 24px; }
.fs-xl { font-size: 32px; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.text-primary { color: #3498db; }
.text-danger { color: #e74c3c; }
.text-success { color: #2ecc71; }
.text-dark { color: #222; }
.text-light { color: #ccc; }

.italics { font-style: italic; }
.uppercase { text-transform: uppercase}

/* --- FLEXBOX HELPERS --- */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }

.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }

.align-start { align-items: flex-start; }
.align-center { align-items: center; }
.align-end { align-items: flex-end; }

/* --- BORDERS & ROUNDED CORNERS --- */
.border { border: 1px solid #ddd; }
.border-none { border: none; }
.border-primary { border-color: #3498db; }
.border-danger { border-color: #e74c3c; }

.rounded-sm { border-radius: 4px; }
.rounded { border-radius: 8px; }
.rounded-lg { border-radius: 16px; }
.rounded-full { border-radius: 50%; }

/* --- SHADOWS --- */
.shadow-sm { box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); }
.shadow { box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2); }
.shadow-lg { box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.3); }

/* --- WIDTH & HEIGHT HELPERS --- */
.w-full { width: 100%; }
.w-half { width: 50%; }
.h-full { height: 100%; }
.h-auto { height: auto; }

.section { margin-bottom: 100px;}
.bg-offset { background-color: #0b0b0b; padding: 30px;}
.section-footer { margin-bottom: 40px; margin-top: 100px;}