@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

:root {
  --bg-color: #121212;
  --main-color: #2564f4;
  --main-hover-color: #5384f6;
  --second-color: #1a1a1a;
  --third-color: #2c2c2c;
  --nav-text-color: #98999b;
  --nav-text-hover-color: #fffce4;
  --heading-color: #fffce4;
  --small-text-color: #c7c7c7;
  --very-small-text-color: #999999;
}

/* random */
h1 {
  color: var(--heading-color);
}

h2 {
  margin-left: 1.5%;
  color: var(--heading-color);
}

h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.825rem;
  margin: 1.3rem 0;
  margin-top: 8px;
  color: var(--small-text-color);
}

p {
  color: var(--very-small-text-color);
  font-size: 0.9rem;
  margin: 1rem 0;
  line-height: 1.5;
}

a {
  text-decoration: none;
  margin: 1rem 0;
  font-weight: 600;
  /* text-transform: uppercase; */
  /* font-size: 0.8125rem; */
  letter-spacing: 1px;
  color: var(--main-hover-color);
}

::-webkit-scrollbar {
  width: 10px;
  background-color: #000000;
}

::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
  border-radius: 15px;
  transition: 0.35s;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--main-hover-color);
}

.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: all 2s ease;
}

.reveal.active {
  transform: translateY(0px);
  opacity: 1;
}

.wrapper {
  margin: 100px auto;
  max-width: 1100px;
}

.title {
  margin-top: 30px;
  text-align: center;
  width: 100%;
  height: 65px;
  margin-bottom: 20px;
}

.th1 {
  display: flex;
  justify-content: center;
}

.thr {
  width: 180px;
  justify-content: center;
}

.thr hr {
  background-color: var(--main-color);
  height: 5px;
  border: none;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

svg {
  display: block;
}

.curve {
  background-color: var(--bg-color);
  margin: 0;
  display: block;
  fill: var(--second-color);
}

.curved {
  background-color: var(--second-color);
  margin: 0;
  display: block;
  fill: var(--bg-color);
}

/* random end */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
}

/* navbar */
header {
  height: 80px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 70px;
  background-color: transparent;
}

.logo {
  cursor: pointer;
  color: var(--heading-color);
}

#botname {
  font-size: 2.5rem;
  color: var(--heading-color);
}

.nav-area {
  list-style: none;
}

.nav-area li {
  display: inline-block;
  padding: 0 15px;
  text-transform: uppercase;
}

.nav-area li a {
  transition: 0.3s;
  color: var(--nav-text-color);
  font-size: 17px;
}

.nav-area li a:hover {
  color: var(--nav-text-hover-color);
}

.btn-area {
  cursor: pointer;
  color: var(--heading-color);
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 30px;
  border-radius: 5px;
  background-color: var(--main-color);
  transition: 0.35s;
}

.btn-area:hover {
  background-color: var(--main-hover-color);
}

::selection {
  color: #fff;
  background: #007bff;
}

/* navbar end */

/* home */

.home {
  margin-top: 150px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.bot-description {
  margin-right: 150px;
  font-size: larger;
}

.home-btn {
  margin-top: 15px;
  width: auto;
  padding: 8px 50px;
  border-radius: 50px;
  border: none;
  background: var(--main-color);
  color: white;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
  transition: 0.35s;
}

.home-btn:hover {
  background-color: var(--main-hover-color);
}

.home-img img {
  width: 365px;
  height: 350px;
  border-radius: 50%;
}

/* home end */
/* features */
.features {
  background-color: var(--second-color);
}

.feature h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  margin: 1rem 0 0.6rem;
}

.features-grid {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.feature {
  background: none;
  margin: 20px;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  -webkit-box-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  border: 2px solid var(--third-color);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.feature:hover {
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
}

.feature i {
  font-size: 3.45rem;
  margin: 1rem 0;
}

.feature1 i,
.feature1 h4,
.feature1 .cta {
  color: #42b7ca;
}

.feature1:hover {
  border: 2px solid #42b7ca;
}

.feature2 i,
.feature2 h4,
.feature2 .cta {
  color: #425fca;
}

.feature2:hover {
  border: 2px solid #425fca;
}

.feature3 i,
.feature3 h4,
.feature3 .cta {
  color: #9c42ca;
}

.feature3:hover {
  border: 2px solid #9c42ca;
}

.feature .cta span {
  font-size: 0.6rem;
}

.feature > * {
  flex: 1 1 100%;
}

.feature .cta {
  align-self: flex-end;
}

/* features end */

/* commands */
.wrapper nav {
  display: flex;
  justify-content: center;
}

.wrapper .categorys {
  display: flex;
  max-width: 720px;
  width: 100%;
  justify-content: space-between;
}

#commands {
  width: 100%;
}

#commands > .tabela {
  width: 75%;
  margin: 0 auto;
}

.tabela > .commandsTitle,
.contactsTitle {
  text-align: center;
  font-family: FontBold;
  font-size: 28px;
  color: white;
  padding-top: 50px;
  padding-bottom: 20px;
  text-decoration: underline;
}

table {
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
  margin-top: 20px;
  border: 2px transparent solid;
  border-collapse: collapse;
  border-radius: 5px;
}

table tr {
  background: var(--second-color);
  border: 1px solid var(--third-color);
  padding: 0.35em;
  color: #fff;
}

table th,
table td {
  padding: 0.625em;
  text-align: start;
}

table th {
  font-size: 0.85em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--main-color);
  font-size: 15px;
  color: white;
}

#example a:link {
  text-decoration: none;
  font-size: 0.95em;
  color: #fff;
}

/* commands end */

/* footer */
footer {
  display: flex;
  width: auto;
  height: 250px;
  background-color: var(--second-color);
  align-items: center;
}

.foot {
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 250px;
  color: white;
}

/* footer end */
/* @ */
@keyframes animate {
  0% {
    transform: scale(0.5);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 1200px) {
  .wrapper nav .categorys {
    max-width: 600px;
  }

  .wrapper {
    max-width: 695px;
    margin: 30px auto;
  }

  nav .categorys span {
    padding: 7px 15px;
  }
}

@media all and (max-width: 900px) {
  .features-grid {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}

@media (max-width: 710px) {
  .wrapper nav .categorys {
    max-width: 600px;
  }

  .wrapper {
    max-width: 450px;
    margin: 30px auto;
  }

  nav .categorys span {
    padding: 7px 15px;
  }

  header {
    padding: 10px 25px;
  }

  .top-nav {
    display: none;
  }

  .home {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
  }

  .home-text {
    text-align: center;
  }

  .bot-description {
    margin-right: 0;
  }

  .nav-area li a {
    font-size: 12.25px;
  }
}

@media (max-width: 600px) {
  .wrapper {
    margin: 30px auto;
  }

  .wrapper nav .categorys {
    flex-wrap: wrap;
    justify-content: center;
  }

  nav .categorys span {
    margin: 5px;
  }

  table {
    border: 0;
  }

  table caption {
    font-size: 1.3em;
  }

  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  table tr {
    display: block;
    margin-bottom: 0.625em;
    border: 0;
    padding: 0;
    border-bottom: 3px solid transparent;
  }

  table td {
    border-bottom: 1px solid var(--third-color);
    display: block;
    font-size: 0.8em;
    text-align: center;
  }

  table td:before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }

  table td:last-child {
    border-bottom: 0;
  }
}

/* @ end */
