body {
  user-select: none;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background-color: #212121;
  color: white;
}

.logo {
    display: flex;
    height: 90px;
}


.help-pc img {
  border-radius: 15px;
  margin-right: 20px;
}

.gold {
    color: #FFD700;
}

#linker btns {
  display: flex;
  align-items: center;
  gap: 6px;
}

#blaze-text, .blaze-text {
    font-family: Inter, sans-serif;
}

/*d9d9d9*/

.invite-btn,
.support-btn {
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 17px;
  border: white;
  border-radius: 15px;
  color: #212121;
  background-color: #ffffff;
  cursor: pointer;
  transition: ease .4s background-color;
}

.invite-btn:hover,
.support-btn:hover {
  background-color: #e3e3e3;
}

.invite-btn:focus,
.support-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
}


.menu {
  display: flex;
  height: 100%;
  width: auto;
  font-size: 18px;
}

.menu a {
  height: 30px;
  margin: 1rem;
  position: relative;
  border-radius: .5rem;
}

.menu a::before {
  width: 0px;
  height: 5px;
  background-color: #ffffff;
  transition: .4s ease-in-out;
  margin-top: 30px;
  content: "";
  position: absolute;
}

.menu a:hover::before {
  width: 100%;
  height: 5px;
  transition: .4s ease-in-out;
  border-radius: .5rem;
  display: block;
}

#open_Menu {
  display: none;
}

::-webkit-scrollbar {
  background-color: #4d4d4d;
  width: .4rem;
  border-radius: .4rem;
}

::-webkit-scrollbar-thumb {
  background-color: white;
  border-radius: .5rem;
}

.features {
  padding-top: 300px;
  /* font-weight: 100; */
  font-size: 20px;
}

.features-title {
  padding-bottom: 20px;
  font-size: 33px;
}

.blaze-txt {
  color: gold;
  font-weight: bold;
}

#icons {
  color: rgb(173, 173, 173);
  transition: .4s color ease-in-out;
}

#icons:hover {
  color: white;
}