.container {
  width: 100%;
  height: 100%;
}
body {
  background-color: #273248;
}

.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%);
}

.butt {
  display: flex;
  align-items: center;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin-right: 5px;
  font-size: 8px;
  height: 15px;
  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;
  margin-left: 6px;
  font-size: 14px;
  line-height: 15px;
}

.terminal_body {
  background: #273248;
  height: 100%;
  width: 100%;
  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: 90px;
  margin-top: 0px;
}

.terminal_user {
  color: #ffebd2;
  font-size: 27px;
  font-style: normal;
  padding: 5px;
  float: left;
  margin-top: 40px;
  margin-left: 120px;
}

.terminal_location {
  color: #171d2b;
}

.terminal_bling {
  color: #171d2b;
}

.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: black;
  }

  100% {
    background: #ffffff;
  }
}

.publishings {
  font-size: 20px;
  font-family: "Times New Roman", Times, serif;
  color: white;
  margin-right: 240px;
  margin-left: 240px;
  margin-top: 10px;
  column-count: 2;
}
a.linklink {
  font-size: 20px;
  font-family: "Times New Roman", Times, serif;
  color: white;
  margin-right: 240px;
  margin-top: 10px;
}
button {
  background-color: #af4f41;
  color: #fff;
  font-family: "Times New Roman", Times, serif;
  padding: 3px 20px;
  border: none;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  font-size: 17px;
  float: right;
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  background-color: #fc7643;
}

button:active {
  transform: translateY(0.5em);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
