@charset "utf-8";
/* Body */
html, body {
  height: 100%;
}

body {
    background-color: #292a2d;
    color: #a9a9b3;
    font-family: 'Hack', monospace;
    margin: 0;
    text-align: center;
}

body a {
  color: #a9a9b3;
  text-decoration-style: dashed;
  opacity: 1;
}
body a:hover {
  text-decoration-style: dotted;
  opacity: 0.7;
}

.fa:hover {
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}


.post_container {
  display: flex;
  flex-direction:column;
  align-items: center;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
.post {
  width: 70%;
  margin: 50px;
  padding: 50px;
  background-color: #252627;
}
.post_title {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: bold;
  opacity: 1;
}
.post_title:hover {
  opacity: 0.7;
}
.post_date {
  font-weight: lighter;

}
.post p {
    line-height: 1.5;
    padding-top: 15px;
    text-align: left;
}

.contact {
  display: flex;
  flex-direction:column;
  align-items: center;
  width: 25%;
  margin-left: auto;
  margin-right: auto;
  background-color: #a9a9b3;
  color: #252627;
  padding: 10px;
  margin-top: 100px;
}

.aboutme_title {
  font-size: 28px;
  letter-spacing: 3px;
  font-weight: bold;
  opacity: 1;
}

.moreposts {
  text-align: center;
  justify-content: center;
  padding: 20px;
}

.hero {
  width: 60%;
  border-style: dotted;
  border-color: #a9a9b3;
}
.hero h1 {
  font-size: 40px;
}
.hero h2 {
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: lighter;
}


/* Finished */
/*  */
footer {
  height: 15%;
  margin-top: 100px;
  bottom: 0;
}

.main_container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.bottom_nav .icon {
 display: none;
}
.bottom_nav {
  background-color: #252627;
  background-image: radial-gradient(#292a2d,#252627,#252627);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  padding: 10px;
  width: 100%;
  bottom: 0;
  font-size: 18px;

}
.navbar_inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: row;
  transition: all 0.3s ease;
}
.navbar_left {
  width: 40%;
}
.logo {
  display: flex;
  position: static;
  margin-left: 15px;
  margin-right: 15px;
  flex: none;
}
.logo a:hover {
  transform: none;
  transition: none;
}
.navbar_right {
  width: 40%;
}
.navlink {
  padding: 0 25px;
  text-decoration: none;
  font-weight: 500;
}

#logo_text {
  font-weight: 500;
}
#logo_cursor {
  margin-left: 5px;
  margin-right: 5px;
  font-weight: 500;
  color: #5998ff;
  -webkit-animation: 1.25s blink step-end infinite;
  -moz-animation: 1.25s blink step-end infinite;
  -ms-animation: 1.25s blink step-end infinite;
  -o-animation: 1.25s blink step-end infinite;
  animation: 1.25s blink step-end infinite;
}
#hero_text {
  font-weight: 500;
  margin: 0 5px;
}
#hero_cursor {
  margin-left: 5px;
  margin-right: 5px;
  font-weight: 500;
  color: #5998ff;
  -webkit-animation: 1.25s blink step-end infinite;
  -moz-animation: 1.25s blink step-end infinite;
  -ms-animation: 1.25s blink step-end infinite;
  -o-animation: 1.25s blink step-end infinite;
  animation: 1.25s blink step-end infinite;
}

@keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: #5998ff;
  }
}
@-moz-keyframes blink {
  from, to {
    color: transparent;
  }
  50% {
    color: #5998ff;
  }
}
@-webkit-keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: #5998ff;
  }
}
@-ms-keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: #5998ff;
  }
}
@-o-keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: #5998ff;
  }
}
