@import url('https://fonts.googleapis.com/css?family=Anonymous+Pro&display=swap');

:root {
  --bc: #efeeee;
  --bc-gray: #0e0d10;
  --white: #ffffff;
	--black: #000000;
	--dark-blue: #1f2029;
  --extra-dark-blue: #13141a;
	--dark-light: #424455;
	--grey: #ecedf3;
	--blue: #007bff;
	--indigo: #6610f2;
	--purple: #6f42c1;
	--pink: #e83e8c;
	--green: #28a745;
  --light-green: #24e33a;
	--success: #28a745;
	--info: #17a2b8;
	--warning: #ffc107;
	--danger: #dc3545;
  --light-gray: #ebecf2;
	--dark: #343a40;
  --block: #011627;
  --color: #f5f5f5;
  --gray: #aeb1b8;
  --purple: #c792ea;
  --green: #7fdbca;
  --yellow: #ecc48d;
  --orange: #f78c6c;
  --red: #ff5874;
  --light: #d6deeb;
	--font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
	--font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
}
* {
	box-sizing: border-box;
}
html, body {
	margin: 0;
  width: 100%;
  min-height: 100vh;
	overflow-x: hidden;
	font-family: "Anonymous Pro", monospace;
  scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
  background-image: url("./assets/background.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}


.flex-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-box-start {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-box-start2 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.flex-box-col {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.container {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.columns {
  width: 100%;
}
.column {
  margin: 2em;
}
.column-inner {
  border-radius: 25px;
  background-color: var(--bc);
}
.column-inner2 {
  border-radius: 25px;
  background-color: var(--bc);
}
.shadow {
  box-shadow: 16px 4px 64px rgba(18, 61, 101, 0.3), -16px -16px 40px rgba(255, 255, 255, 0.8), inset -8px -6px 80px rgba(255, 255, 255, 0.18);
}
.sidebar {
  width: 250px;
  min-height: 35vh;
  position: relative;
  text-align: center;
}
.photo {
  top: -75px;
  width: 200px;
  height: 200px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}
.photo > img {
  width: 100%;
}
.header-content {
  top: -40px;
  position: relative;
}
.header-name {
  margin: 0;
  color: rgba(161, 181, 201, .8);
  text-shadow: 2px 2px 2px #d6e1ef99, 0 0 0 #000, 2px 2px 2px #d6e1ef00;
}
.header-sub {
  margin: 1em 0 0 0;
  color: rgba(161, 181, 201, .8);
  text-shadow: 2px 2px 2px #d6e1ef99, 0 0 0 #000, 2px 2px 2px #d6e1ef00;
}

.header-email {
  /* margin: 0.3em 0 2em 0;
  Use when job title is in use
  */
  margin: 0.3em 0 0.3em 0;
  color: rgba(161, 181, 201, .8);
  text-shadow: 2px 2px 2px #d6e1ef99, 0 0 0 #000, 2px 2px 2px #d6e1ef00;
}

.last-email {
  margin: 0.3em 0 2em 0;
}

.dots {
  left: 1em;
  position: absolute;
  width: 100%;
  z-index: 5;
}
.dot1 {
  margin: .3em;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #ebbec5;
}
.dot2 {
  margin: .3em;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #ede29a;
}
.dot3 {
  margin: .3em;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #aced9a;
}
.terminal-bar {
  width: 100%;
  min-height: 5vh;
  position: relative;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  background-color: #e8ebeb;
}
.bar-text {
  margin: 0;
  font-size: 125%;
  font-weight: 300;
  color: rgba(161, 181, 201, .8);
  text-shadow: 2px 2px 2px #d6e1ef99, 0 0 0 #000, 2px 2px 2px #d6e1ef00;
  opacity: .75;
}

/* Code */
.code-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 25vw;
}

.block {
  background-color: var(--block);
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .4);
  color: var(--color);
  border-radius: 0 0 25px 25px;
  width: 100%;
}

.block p {
  margin: 2em;
}
.block p span {
  display: block;
}
.inline {
  margin-left: 1em;
}
.inline-2 {
  margin-left: 3em;
}
.green {
  color: var(--green);
}
.gray {
  display: inline-block;
  color: var(--gray);
}
.block p span .white {
  display: inline-block;
  color: var(--light);
}
.block p span .purple {
  display: inline-block;
  color: var(--purple);
}
.yellow {
  display: inline-block;
  color: var(--yellow);
}
.block p span .orange {
  display: inline-block;
  color: var(--orange);
}

.block p span .purple {
  display: inline-block;
  color: var(--purple);
  font-style: italic;
}


::selection {
  color: var(--color);
  background: var(--red);
}




.break {
  margin: 0 0 .5em 0;
}




/* Socials */

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.social svg {
  fill: #000;
  width: 36px;
  display: block;
  transition: 0.3s;
}
.social a {
  color: #8797a1;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  background-color: rgba(93, 133, 193, 0.05);
  border-radius: 50%;
  margin-right: 10px;
}
.social a:hover svg {
  width: 40px;
}
.social a:last-child {
  margin-right: 0;
}




/* SCROLLBAR */
::-webkit-scrollbar-track {
      background-color: #F5F5F5;
}
::-webkit-scrollbar {
      width: 12px;
      background-color: #F5F5F5;
}
::-webkit-scrollbar-thumb {
      background-color: rgba(161, 181, 201, .8);
}
/* @media rules */
@media screen and (max-width: 768px) {
  .flex-box-start {
    flex-direction: column;
  }


  .code-wrapper {
    min-width: 80vw;
  }

  .info-box {
    padding-top: 5em;
    margin-bottom: -0.25em; /* Less space in between items */
  }

  .container {
    /* TODO - REMOVE IF USING TWO BOX */
    /* height: unset; */
  }
}
