@import url(fontiran.css);

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  white-space: 0;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
*::selection{
  user-select: none;
}
body{
  background-color: #070707;
  padding: 100px;
  font-size: 17px;
  line-height: 170%;
  font-family: monospace;
}
.console{
  cursor: default;
  overflow: hidden;
  padding: 30px;
  font-family: Ravi FaNum;
  border: 1px solid #202020;
  border-radius: 15px;
  background-color: rgba(34, 34, 34, 0.2);
  max-width: 750px;
  min-width: 210px;
  text-align: justify;
  margin: 0 auto;
}
.nav-bar{
  color: #fff;
  margin-bottom: 30px;
  line-height: 200%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.search-bar-icon{
display: inline-flex;
gap: 10px;
}
.search-bar-text{
  color: #767676;
  font-family: Ravi FaNum;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
#caption{
  color: #fff;
  line-height: 200%;
  font-size: 16px;
}
#cursor{
  color: #fff;
  margin-right: 4px;
  font-size: 20px;
}
a{
  color:#64A1FB;
  text-decoration: none;
  display: inline-block;
}
a:hover{
  color:#fff;
  transition: .2s;
  text-decoration: underline;
  cursor: pointer;
}
@media (min-width: 0) and (max-width: 850px) {
  body{
    padding: 30px;
  }
  .search-bar-icon{
    display: none;
  }
}