/*
@import url("../fonts/fira/fira_code.css");

@font-face {
  font-family: 'Poiret One';
  src: url('../fonts/poiret/PoiretOne-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
*/

body {
  font-family: 'Fira Code', 'Open Sans', sans-serif;
  min-height: 100vh;
  background-color: #1c2c3cff;
  background: linear-gradient(132deg, #202325 0%, #1e4759 100%);
  background-size: cover;
  color: #fff;
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, nav, button {
  font-family: 'Fira Code', 'Open Sans', sans-serif;
  /* font-family: 'Poiret One', cursive; */
  padding: 0;
  margin: 0;
}

p {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

nav {
  height: 60px;
  font-size: 2em;
}

.bg-dark {
  background-color: transparent !important;
}

nav .nav-button {
  margin: 10px;
  width: 5em;
  text-align: center;
  cursor: pointer;
}

nav .nav-button a {
  color: #fff;
}

nav .nav-button .underline {
  width: 0;
  margin: auto;
  height: 2px;
  background-color: #fff;
  transition: .25s ease-in;
}

nav .nav-button-active .underline {
  width: 100%;
}

nav .nav-button:hover .underline {
  width: 100%;
}

button {
  border: 1px solid #fff;
  color: #fff;
  background-color: transparent;
  font-size: 1.75em;
  margin: 0 10px;
  transition: .75s ease-out;
}

button:hover {
  color: #000;
  background-color: #fff;
}

.spacer {
  width: 100%;
  height: 60px;
}

.footer-fix {
  min-height: calc(100vh - 140px)
}

footer {
  height: 80px;
  width: 100%;
  text-align: center;
}

footer span {
  background-color: transparent;
  color: rgba(255,255,255,.8);
  border: 1px solid #fff;
  padding: 5px;
  transition: .75s ease-out;
}

footer a:hover span {
  background-color: #fff;
  color: #000;
}

.fa {
  font-size: 20px !important;
  padding: 5px !important;
}

.space-right {
  margin-right: 20px;
}

.space-left {
  margin-left: 20px;
}

.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.flex-space-between {
  justify-content: space-between;
}

.flex-justify-start {
  justify-content: start;
}

.flex-justify-center {
  justify-content: center;
}

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

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

.flex-wrap {
  flex-wrap: wrap;
}

.position-relative {
  position: relative;
}

.z-index-1 {
  z-index: 1;
}
