/* From Uiverse.io by mrhyddenn */ 

body{
    font-family: Arial, Helvetica, sans-serif;
}

a:link {
  text-decoration: underline;
  color: rgb(255, 255, 255);
}

a:visited {
  text-decoration: underline;
   color: rgb(255, 255, 255);
}

a:hover {
  text-decoration: underline;
}

a:active {
  text-decoration: underline;
}

.container {
  max-width: 530px;
  width: 100%;
  height: auto;
  min-height: 100vh;
  margin: 0 auto;
  box-sizing: border-box;
}

.terminal_toolbar {
  display: flex;
  height: 30px;
  align-items: center;
  padding: 0 8px;
  box-sizing: border-box;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background: linear-gradient(#504b45 0%, #3c3b37 100%);
  position: relative;
}

.butt {
  display: flex;
  align-items: center;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin-right: 5px;
  font-size: 8px;
  height: 12px;
  width: 12px;
  box-sizing: border-box;
  border: none;
  border-radius: 100%;
  background: linear-gradient(#7d7871 0%, #595953 100%);
  text-shadow: 0px 1px 0px rgba(255,255,255,0.2);
  box-shadow: 0px 0px 1px 0px #41403A, 0px 1px 1px 0px #474642;
}

.btn-color {
  background: #ee411a;
}

.btn:hover {
  cursor: pointer;
}

.btn:focus {
  outline: none;
}

.butt--exit {
  background: linear-gradient(#f37458 0%, #de4c12 100%);
}

.user {
  color: #d5d0ce;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 14px;
  line-height: 15px;
}

.terminal_body {
  background: rgba(56, 4, 40, 0.9);
  height: calc(100% - 30px);
  padding-top: 2px;
  margin-top: -1px;
  font-size: 12px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.terminal_promt {
  display: flex;
}

.terminal_promt span {
  margin-left: 4px;
  margin-bottom: 5px;
}

.terminal_promtcd {
  display: flex;
  color: #4878c0;
  display: inline-block;
}

.terminal_promtcd span {
  margin-left: 20px;
  margin-bottom: 5px;
}

.terminal_fastfetch_container {
    display: flex;
    align-items: flex-start;
    margin-top: 10px;
  }

  .terminal_fastfetch_container img {
    display: block;
  }

  .terminal_fastfetch_infos {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-left: 2px;
  }

  .terminal_fastfetch_infos > div {
    margin-bottom: 4px;
  }

  .terminal_fastfetch {
    color: #ff0000;
    font-weight: 700;
    margin-right: 4px;
  }

.terminal_user {
  color: #7eda28;
}

.terminal_location {
  color: #4878c0;
}

.terminal_bling {
  color: #dddddd;
}

.terminal_cursor {
  display: block;
  height: 14px;
  width: 5px;
  margin-left: 10px;
  animation: curbl 1200ms linear infinite;
}

@keyframes curbl {
  
  0% {
    background: #ffffff;
  }

  49% {
    background: #ffffff;
  }

  60% {
    background: transparent;
  }

  99% {
    background: transparent;
  }

  100% {
    background: #ffffff;
  }
}

@media (max-width: 600px) {
  .container {
    width: 95vw;
    height: auto;
    min-height: 100vh;
    box-sizing: border-box;
  }
  .terminal_toolbar {
    height: 40px;
    font-size: 14px;
    padding: 0 4px;
  }
  .user {
    font-size: 12px;
  }
  .terminal_body {
    font-size: 14px;
    padding: 4px 2px;
  }
  .terminal_promtcd span, .terminal_promt span {
    margin-left: 8px;
    font-size: 13px;
  }
  .terminal_fastfetch_container {
    flex-direction: column;
    align-items: center;
  }
  .terminal_fastfetch_container img {
    width: 90px;
    height: 90px;
  }
  .terminal_fastfetch_infos {
    margin-left: 0;
    align-items: center;
  }
} 
