@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap");
html {
  height: 100%;
  min-height: 100%;
  width: 100%;
}
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  height: 100%;
  width: 100%;
  color: #519975;
  background-image: url(../img//wp.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  /* background: #c04848; /* fallback for old browsers */
  /* background: -webkit-linear-gradient( */
  /*  to right,
     /* #480048,
    /*  #c04848
  ); /* Chrome 10-25, Safari 5.1-6 */
  /* background: linear-gradient(
     /* to right,
     /* #480048,
    /*  #c04848
  ); W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  font-family: cursor, monospace;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
::selection {
  color: #211830;
  background-color: #519975;
}
::-moz-selection {
  color: #211830;
  background-color: #519975;
}
textarea {
  left: -1000px;
  position: absolute;
}
b {
  font-weight: bold;
  text-decoration: underline;
}
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  height: 25px;
  padding: 5px 15px;
  color: #eee;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.socials {
  display: flex;
  align-items: center;
}
.socials a {
  cursor: pointer;
  font-size: 15px;
  display: block;
  color: #fff;
}
.socials a:last-child {
  margin-left: 10px;
}
.socials a:hover {
  color: #dddcdc;
  background: none !important;
}
#terminal {
  word-wrap: break-word;
  word-break: break-word;
}
#terminal-wrapper {
  width: 50%;
  height: 400px;
  overflow-y: auto;
  border: 1px solid rgba(238, 238, 238, 0.2);
  border-top: none;
  padding: 15px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background-color: rgba(0, 0, 0, 0.7);
}
#terminal-wrapper::-webkit-scrollbar {
  width: 10px;
  background-color: #eee;
}

#terminal-wrapper::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 1px;
}

#terminal-wrapper::-webkit-scrollbar-thumb {
  border-radius: 3px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  background-color: transparent;
}
.top-bar {
  width: 50%;
  text-align: center;
  background-color: rgb(61, 59, 59);
  padding: 0 15px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border: 1px solid rgba(238, 238, 238, 0.2);
  border-bottom: none;
}
.top-bar h4 {
  margin: 10px 0;
  color: rgb(117, 115, 110);
}
/* Cursor Start */
.cursor {
  font-size: 12px;
  color: #73abad;
  background-color: #73abad;
  position: relative;
  opacity: 1;
  height: 1.5em;
  width: 10px;
  max-width: 10px;
  transform: translateY(4px);
  overflow: hidden;
  text-indent: -5px;
  display: inline-block;
  text-decoration: blink;
  animation: blinker 1s linear infinite;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}
#command {
  cursor: text;
  height: 50px;
  color: #73abad;
}
#liner {
  line-height: 1.3em;
  margin-top: -2px;
  animation: show 0.5s ease forwards;
  animation-delay: 1.2s;
  opacity: 0;
}
#liner::before {
  color: #519975;
  content: "user@samirmujanovic.com:~$";
}
#liner.password::before {
  content: "Password:";
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Cursor End */
p {
  display: block;
  line-height: 1.3em;
  margin: 0;
  overflow: hidden;
  letter-spacing: 0.05em;
}
.no-animation {
  animation: typing 0 steps(30, end);
}
.margin {
  margin-left: 20px;
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.heading {
  font-size: 30px;
  color: #0288d1;
  font-family: "Press Start 2P";
  padding: 15px 0;
  display: block;
}
.index {
  color: #dcdccc;
}
.color2 {
  color: #b89076;
}
.command {
  color: #73abad;
  text-shadow: 0 0 5px #73abad;
}
.error {
  color: #b89076;
}
.white {
  color: #fff;
}
.inherit,
a {
  color: #9c8394;
}
a {
  text-decoration: inherit;
}
a:hover {
  background: #73abad;
  color: #211830;
}
a:focus {
  outline: 0;
}

@media screen and (max-width: 1024px) {
  #terminal-wrapper {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
    padding: 30px 0 15px 0;
    background-color: rgba(0, 0, 0, 0.3);
  }
  .top-bar {
    display: none;
  }

  .heading {
    font-size: 20px;
  }

  p {
    font-size: 13px;
    margin: 0 15px;
  }

  #liner {
    font-size: 13px;
    margin: 0 15px;
  }
}
