h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
button,
a,
i,
input,
body {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  color: inherit;
}

h1:focus,
h2:focus,
h3:focus,
h4:focus,
h5:focus,
h6:focus,
p:focus,
ul:focus,
li:focus,
button:focus,
a:focus,
i:focus,
input:focus,
body:focus {
  outline: 0;
}

body {
  margin: 0;
  padding: 0;
  height: auto;
  background-color: #0e0e0e;
  font-family: 'Gilroy', sans-serif;
  letter-spacing: 1px;
  line-height: 1.5;
}

a {
  color: #ffaa50;
}

.content {
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  justify-content: center;
  align-items: flex-end;
  height: 230px;
  min-width: 350px;
  background-color: #161616;
  border-radius: 12px;
  padding: 0;
}

.notfound_picture {
  position: absolute;
  left: auto;
  margin: 0 auto;
  top: -47px;
  -webkit-user-drag: none;
  user-select: none;
  z-index: 0;
}

.notfound_picture2 {
  position: absolute;
  left: 0;
  right: auto;
  margin: 0 auto;
  top: -82px;
  -webkit-user-drag: none;
  user-select: none;
}

.notfound_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}

.description_error {
  color: #6e6e6e;
  font-size: 12px;
  font-weight: 600;
  width: 350px;
  max-height: 33px;
  padding: 0 10px;
  margin: 10px 0;
  overflow: hidden;
  overflow-y: scroll;
  text-align: center;
  display: flex;
  justify-content: center;
}

.code_error {
  font-size: 68px;
  font-weight: 800;
  color: #ffaa50;
  height: 100px;
  border-radius: 12px;
  backdrop-filter: blur(2px);
  width: 200px;
  background-color: hsl(0deg 0% 14% / 60%);
  display: flex;
  justify-content: center;
}

.buttons_error {
  position: relative;
  display: flex;
  gap: 5px;
  width: 100%;
}

.buttons_error>div {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 5px 0;
  background-color: #242424;
  padding: 10px 0;
  border-radius: 4px;
  transition: .3s;
  color: #6e6e6e;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  -webkit-user-drag: none;
  gap: 10px;
}

.buttons_error>div:hover {
  background-color: #2a2a2a;
  transition: .3s;
  color: #ffaa50;
}

.buttons_error>div svg {
  width: 15px;
  height: auto;
  fill: #6e6e6e;
  transition: .3s;
}

.buttons_error>div:hover svg {
  transition: .3s;
  fill: #ffaa50;
}

.buttons_error>div:first-child {
  margin-left: 5px;
}

.buttons_error>div:last-child {
  margin-right: 5px;
}

.no-scrollbar {
  scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

::selection {
  background-color: rgb(255 170 80 / 5%);
  color: #ffaa50;
}

::-moz-selection {
  background-color: rgb(255 170 80 / 5%);
  color: #ffaa50;
}

::-o-selection {
  background-color: rgb(255 170 80 / 5%);
  color: #ffaa50;
}

::-ms-selection {
  background-color: rgb(255 170 80 / 5%);
  color: #ffaa50;
}

::-webkit-selection {
  background-color: rgb(255 170 80 / 5%);
  color: #ffaa50;
}