:root {
  --btn-main-bg: #222222;
  --btn-main-border: #313131;
  --main-border: #3d3d3d;
  --btn-hover: #313131;
  --btn-in: #313131;
  --main-navbar-border: #3d3d3d;
  --main-navbar: #202020;
  --white: white;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: #171717;
  display: flex;
  flex-direction: column;
}
* {
  box-sizing: border-box;
  font-family: Inter, Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background: var(--main-navbar);
  height: 70px;
  position: sticky;
  top: 0;
  border-bottom: 1px solid var(--main-navbar-border);
}
.navbar-items {
  display: flex;
  flex-direction: row;
  flex: none;
  order: 1;
  flex-grow: 0;
  margin: 0px 0px;
  color: #dddddd;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.navbar-items a {
  color: #dddddd;
  text-decoration: none;
  transition: all ease-out 0.2s;
  order: -0;
  outline: none;
}
.navbar-title {
  display: flex;
  align-items: center;
  flex: none;
  order: 2;
  flex-grow: 1;
  margin: 0px 0px;
  justify-content: center;
}
.navbar-title a {
  color: #dddddd;
  text-decoration: none;
  font-size: 24px;
  transition: all ease-out 0.2s;
}
.button-main-modal a {
  color: var(--white);
  text-decoration: none;
  flex: none;
  order: 1;
  flex-grow: 0;
  margin-right: 10px;
  padding: 10px;
}
.navbar-title a:hover,
.navbar-items a:hover {
  color: white;
  outline: none;
}
.modal-content {
  background: var(--btn-main-bg);
  color: white;
  border-radius: 0.6em;
  overflow: hidden;
  max-width: 990px; /* fix when */
  text-align: center; /* ass but idk */
  grid-area: 1 / 1 / 2 / 2;
}
.modal-content-updates {
  background: var(--btn-main-bg);
  max-width: 560px;
  text-align: center;
  border-radius: 0.6em;
  color: var(--white);
}

.modal-footer {
  font-size: 12px;
}
.modal-body {
  padding: 0 30px;
}
.container {
  padding: 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btn-link-main {
  background: var(--btn-main-border);
  color: var(--btn-main-text);
  border: none;
  text-decoration: none;
  border-radius: 0.6em;
  transition: all ease-out 0.2s;
  cursor: pointer;
  text-align: center;
  font-size: 23px;
  margin: 5px;
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
}
.button-main-modal svg,
.button-main-modal img {
  margin-left: 10px;
  padding: 10px;
}
.button-main-modal {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  justify-content: center;
  padding: 10px;
}
.button-main-modal div:hover {
  background: var(--btn-hover);
  transition: all ease-out 0.2s;
}
.button-main-modal div:active {
  background: var(--btn-in-active);
  transition: all ease-out 0.2s;
}
.hr-colored hr {
  height: 0;
  border: 0;
  border-top: 1px solid var(--main-border);
}
.span-colored-beta span {
  color: #b1b1b1;
  background-color: #3a3a3a;
  border-radius: 20px;
  padding: 0 10px;
  font-size: 18px;
  margin: 5px;
}
#root {
  overflow: hidden;
}
@media screen and (max-width: 598px) {
  .btn-link-main {
    padding: 10px 30px;
    font-size: 18px;
  }
  .button-main-modal {
    flex-direction: column;
    max-width: 250px;
  }
  .modal-body {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
  }
}
.div-text-24 div {
  font-size: 24px;
}
.div-text-18 div {
  font-size: 18px;
}
.div-text-16 div {
  font-size: 16px;
}
.bottom-padding {
  border-bottom: 1px solid var(--main-border);
  padding: 10px;
}
.top-padding {
  border-top: 1px solid var(--main-border);
  padding: 10px;
}
/* End of self written css trol */
/* Start of sidebar menu CSS */
#container-sidebar {
  z-index: 2;
  background: none;
  width: 100%;
  height: 100%;
  position: fixed;
  transition: all ease-out 0.2s;
}
.sidebar {
  position: relative;
  display: inline-block;
}
#sidebar-menu {
  position: absolute;
  background-color: var(--main-navbar);
  min-width: 250px;
  z-index: 1;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  box-shadow: -5px 0px 8px rgba(0, 0, 0, 0.25);
  transition: all ease-out 0.3s;
}
#sidebar-menu a {
  color: var(--white);
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  min-width: 180px;
  margin: 0;
  margin-right: 20px;
  margin-left: 20px;
  font-size: 18px;
  border-radius: 0.6em;
  outline: none;
}
#sidebar-menu a:hover {
  background-color: var(--btn-hover);
  transition: all ease-out 0.2s;
}
.sidebar:hover #sidebar-button {
  background-color: var(--btn-in-active);
  border-radius: 8px;
}
.sidebar-button-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px;
  justify-content: flex-end;
}
.sidebar-info-fixed {
  width: 100%;
  bottom: 0;
  position: absolute;
  text-align: center;
  font-size: 16px !important;
  border-bottom: none !important;
  color: white;
  padding: 15px;
  background: #191a2a96;
}
.sidebar-hr {
  border-bottom: 1px solid var(--btn-main-border);
  margin: 10px 26px;
}
.sidebar-button-close-par {
  margin-bottom: 10px;
  display: flex;
  align-items: stretch;
  flex-direction: row;
  justify-content: flex-end;
}

.copy-me {
  cursor: pointer;
  color: var(--white);
  font-size: 12px;
  margin: 0;
  padding: 0;
  margin-left: 5px;
  user-select: all;
}
.news {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
