@charset "UTF-8";
/***
    The new CSS reset - version 1.8.5 (last updated 14.6.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" attribute is exclud, because otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
@import url(https://fonts.googleapis.com/css?family=Poppins:100,200,300,regular,500,600,700,800,900&display=swap);
*:where(
    :not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)
  ) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
  height: auto;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element */
:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

html,
body {
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: #090900;
}

p {
  line-height: 150%;
}

h1 {
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  margin: 25px 0;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 20px 0;
  text-align: center;
}

h3 {
  font-size: 26px;
  font-weight: 600;
  margin: 15px 0;
}

ol {
  list-style: decimal;
  padding: 15px 25px;
}

ul {
  list-style: disc;
  padding: 15px 25px;
}

li {
  line-height: 150%;
}

ol li::marker,
ul li::marker {
  color: #46cb44;
  font-weight: 600;
}

table {
  border-collapse: collapse;
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
  overflow: auto;
}
table tr td,
table tr th {
  border: 1px solid #fff;
  padding: 15px;
}
table tr th {
  background-color: #46cb44;
  color: #fff;
  font-size: 18px;
  text-align: center;
}
table tr td:hover {
  background-color: rgba(76, 57, 57, 0.6352941176);
}

.header {
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background: #1d1d1d;
  padding: 20px 0;
  box-shadow: 0 0 5px #46cb44;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .container .logo {
  width: 150px;
  font-size: 40px;
  font-weight: 600;
}
.header .container .logo img {
  width: 100%;
}
.header .container .auth {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header .container .auth .btn-1 {
  background: #8c14f0;
}
.header .container .auth .btn-1:hover {
  background: #8c14f0;
}
.header .container .auth .btn-2 {
  background: linear-gradient(253.67deg, #46cb44 2.27%, #46cb44 94.48%);
  color: #000;
  font-weight: 600;
}
.header .container .auth .btn-2:hover {
  background: linear-gradient(253.67deg, #cdff63 2.27%, #e5ff55 94.48%);
}

.btn {
  border-radius: 6px;
  padding: 12px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
}

.main {
  height: 100%;
  flex: 1 1 auto;
  padding: 20px 0 50px;
}
/*.main nav ul {*/
/*  list-style: none;*/
/*  padding: 0;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  flex-wrap: wrap;*/
/*  gap: 20px;*/
/*}*/
/*.main nav ul li:hover {*/
/*  text-decoration: underline;*/
/*}*/
.main__col {
  text-align: center;
  padding: 50px 16px;
  border-bottom: 2px solid #46cb44;
}
.main__col .wrapper {
  max-width: 50vw;
  margin: 0 auto;
}
.main__col p {
  margin: 20px 0;
  font-size: 20px;
}
.main__btn {
  background: #46cb44;
  width: 250px;
  margin: 40px auto;
  animation: glowing1 1500ms infinite;
  color: black;
  font-weight: 600;
}
.main__btn:hover {
  background: #46cb44;
}
.main .content {
  padding: 50px 0 0 0;
}
.main .content p {
  margin: 15px 0;
}
.main .content img {
  display: flex;
  margin: 0 auto;
  max-width: 500px;
}

.container {
  max-width: 90vw;
  margin: 0 auto;
  padding: 0 16px;
}

.footer {
  padding: 20px 0 30px;
  background-color: #1d1d1d;
  box-shadow: 0 0 5px #46cb44;
}
.footer nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer nav ul li:hover {
  text-decoration: underline;
}
.footer .copyright {
  font-size: 12px;
  text-align: center;
  margin-top: 20px;
}

@media (max-width: 768px) {
  h1 {
    margin: 20px 0;
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
    margin: 15px 0;
  }
  h3 {
    font-size: 20px;
    margin: 10px 0;
  }
  .container {
    max-width: 100%;
  }
  .header .container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .main {
    padding: 30px 0;
  }
  .main nav ul {
    gap: 15px;
    font-size: 14px;
  }
  .main__col {
    padding: 30px 16px;
  }
  .main__col p {
    font-size: 20px;
  }
  .main__col .wrapper {
    max-width: 100%;
  }
  .main .content {
    padding: 30px 0 0 0;
  }
  .main .content img {
    max-width: 100%;
  }
  .footer .container nav ul {
    font-size: 14px;
  }
}
@keyframes glowing1 {
  0% {
    box-shadow: 0 0 5px #4d4d4d;
  }
  50% {
    box-shadow: 0 0 20px #8c14f0;
  }
  100% {
    box-shadow: 0 0 5px #4d4d4d;
  }
}
.anchors-block {
  border-radius: 6px;
  padding: 15px;
  background: #1d1d1d;
}
.anchors-block span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}
.anchors-block ul {
  margin: 0;
  padding: 0 0 0 25px;
  list-style: none;
}
.anchors-block ul li {
  margin-bottom: 12px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.anchors-block ul li * {
  line-height: 1;
}
.anchors-block ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
}
.anchors-block ul li a:hover {
  color: #1d1d1d;
}
