@import url("https://fonts.googleapis.com/css?family=Cabin|Lato");
@import url("https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap");

html,
body {
  margin: 0;
  padding: 0;
  color: #5e5e5e;
  background: black;
  font-family: "Cabin", sans-serif;
}

:root {
  --btn-primary:#009b27;
  --btn-secondary:#00ff0d;
  --output-color:#80ff80cc;
  --output-primary:#33ff3366;
  --output-secondary:#ffffffcc;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
}

.container {
  width: 100%;
  margin: 0 auto;
}

.padding {
  padding-top: 0px;
}

/* Navbar or Header */
header {
  height: auto;
  background: #fff;
  line-height: 1rem;
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.12);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
}

header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#logo {
  color: #111111;
  text-decoration: none;
  text-transform: uppercase;
  margin-top: auto;
  margin-bottom: auto;
  padding: 1em;
  font-size: 1.5em;
  font-family: "Lato", sans-serif;
}

.navbar-links {
  padding-left: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: auto;
}

.navbar-links .nav-link {
  margin-top: auto;
  margin-bottom: auto;
}

.navbar-links .nav-link a {
  color: #5e5e5e;
  white-space: nowrap;
  padding: 1.4em 1.2em;
  text-transform: uppercase;
  font-family: "Cabin", sans-serif;
}

.navbar-links .nav-link a:hover {
  color: rgb(102, 51, 153);
  border-bottom: 3px solid rgb(102, 51, 153);
}

.navbar-links .nav-link a.active {
  color: rgb(102, 51, 153);
  border-bottom: 3px solid rgb(102, 51, 153);
}

@import "https://fonts.googleapis.com/css?family=Inconsolata";

html {
  min-height: 100%;
}

body {
  box-sizing: border-box;
  height: 100%;
  background-color: #000000;
  background-image: radial-gradient(#11581e, #041607);
  font-family: "Inconsolata", Helvetica, sans-serif;
  font-size: 1.5rem;
  color: #80ff80cc;
  text-shadow: 0 0 1ex #33ff33, 0 0 2px #ffffffcc;
}

.change_theme{
  padding: 15px;
  background-color: #000000;
  text-align: right;
}
.overlay {
  --overlay-primary: #20802033;
  --overlay-secondary: #208020cc;
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  background-size: auto 4px;
  z-index: 99;
}

.overlay::before {
  content: "";
  pointer-events: none;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    0deg,
    transparent 0%,
    var(--overlay-primary) 2%,
    var(--overlay-secondary) 3%,
    var(--overlay-primary) 3%,
    transparent 100%
  );
  background-repeat: no-repeat;
  animation: scan 7.5s linear 0s infinite;
}

@keyframes scan {
  0% {
    background-position: 0 -100vh;
  }
  35%,
  100% {
    background-position: 0 100vh;
  }
}

.terminal {
  box-sizing: inherit;
  position: absolute;
  height: 100%;
  width: 1000px;
  max-width: 100%;
  padding: 4rem;
  text-transform: uppercase;
}


.output_change {
  --output-color:#9f3e09cc;
  --output-primary:#240a0ad2;
  --output-secondary:#ffffffcc;
  --btn-primary:#b11b0a;
  --btn-secondary:#9f400e;
}

.output {

  color: var(--output-color);
  text-shadow: 0 0 1px var(--output-primary), 0 0 2px var(--output-secondary);
}

.output::before {
  content: "> ";
}

a {
  color: #fff;
  text-decoration: none;
}

a::before {
  content: "[";
}

a::after {
  content: "]";
}

.errorcode {
  color: white;
}

.change_btn {
  width: 26px;
  height: 26px;
  margin: 4px;
  background: linear-gradient(270deg, #80ff80cc 13px, #cb141d 13px);
  border-radius: 13px;
  border: 1px solid #ffffff;
  cursor: pointer;
}

.change_btn:hover:before {
  opacity: 1;
  border: 1.5px solid #ffffff;
}

#btn {
  width: 220px;
  height: 50px;
  border: none;
  outline: none;
  color: #fff;
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border: solid green 1px;
  border-radius: 10px;
}

#btn:before {
  content: "";
  background: linear-gradient(
    45deg,
    var(--btn-primary),
    var(--btn-secondary),
    var(--btn-primary),
    var(--btn-secondary),
    var(--btn-primary),
    var(--btn-secondary),
    var(--btn-primary),
    var(--btn-secondary),
    var(--btn-primary)
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

#btn:active {
  background-color: rgb(0, 0, 0);
  transform: scale(0.98);
}

#btn:hover:before {
  opacity: 1;
}

#btn:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #111;
  left: 0;
  top: 0;
  border-radius: 10px;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.glitch {
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff,
    0.025em 0.04em 0 #fffc00;
  animation: glitch 725ms infinite;
}

@keyframes glitch {
  0% {
    text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff,
      0.025em 0.04em 0 #fffc00;
  }
  15% {
    text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff,
      0.025em 0.04em 0 #fffc00;
  }
  16% {
    text-shadow: -0.05em -0.025em 0 #00fffc, 0.025em 0.035em 0 #fc00ff,
      -0.05em -0.05em 0 #fffc00;
  }
  49% {
    text-shadow: -0.05em -0.025em 0 #00fffc, 0.025em 0.035em 0 #fc00ff,
      -0.05em -0.05em 0 #fffc00;
  }
  50% {
    text-shadow: 0.05em 0.035em 0 #00fffc, 0.03em 0 0 #fc00ff,
      0 -0.04em 0 #fffc00;
  }
  99% {
    text-shadow: 0.05em 0.035em 0 #00fffc, 0.03em 0 0 #fc00ff,
      0 -0.04em 0 #fffc00;
  }
  100% {
    text-shadow: -0.05em 0 0 #00fffc, -0.025em -0.04em 0 #fc00ff,
      -0.04em -0.025em 0 #fffc00;
  }
}
#clock {
  font-size: 1.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 40;
  margin-left: 70%;
}
.Input {
  font: 20px Verdana;
  font-style: italic;
  border: 1px solid orange;
  border-radius: 8px;
  width: 300px;
  padding: 5px;
}

.Submit {
  color: rgb(0, 0, 0);
  background-color: #80ff80cc;
  padding: 10px 15px;
  border: none;
  outline: none;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
}

.Submit:hover {
  padding: 12px 17px;
  font-size: 15px;
}
textarea {
  width: 900px;
  height: 40px;
  resize: none;
}

/* Footer Code Starts Here  */
#footer-hr{
  margin-left: 20%;
}
.footer-icons{
  margin-left: 70%;
}

footer{
  /* position: absolute;
  bottom: 0;
  left: 0;
  right: 0; */
  background: #111;
  height: auto;
  width: 100vw;
  padding-top: 0px;
  color: #fff;
  margin-left: -130px;
  padding-right: 30px;
}

.footer-content{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.footer-content h3{
  font-size: 2.1rem;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 3rem;
}
.footer-content p{
  max-width: 500px;
  margin: 10px auto;
  line-height: 28px;
  font-size: 14px;
  color: #cacdd2;
}
.socials{
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0 3rem 0;
}

.socials li{
  margin: 0 10px;
}

.socials a{
  text-decoration: none;
  color: #fff;
  border: 1.2px solid #7CF17C;
  padding: 10px;
  border-radius: 50%;
}

.socials a i{
  font-size: 1.1rem;
  width: 20px;
  transition: color .4s ease;
}

.socials a:hover i{
  color: aqua;
}

.footer-bottom{
  background: #252625;
  width: 100vw;
  padding: 20px;
  padding-bottom: 20px;
  text-align: center;
}
.footer-bottom p{
  float: center;
  font-size: 14px;
  word-spacing: 2px;
  text-transform: capitalize;
}
.footer-bottom p a{
 color:#44bae8;
 font-size: 16px;
 text-decoration: none;
}
.footer-bottom span{
   text-transform: uppercase;
   opacity: .4;
   font-weight: 200;
}
/* navbar styling */
#navbar {
  background-color: #333;
  position: fixed;
  top: -50px;
  width: 100%;
  display: block;
  transition: top 0.3s;
  z-index: 40;
}

#navbar a {
  float: left;
  display: block;
  color:white;
  text-align: center;
  padding: 15px;
  text-decoration: none;
  font-size: 17px;
}
/* overriding default anchor tags */
.navigation{
  text-decoration: none;
  color: inherit;
}
.navigation::before {
  content: none;
}

.navigation::after {
  content: none;
}



  