* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  background: #0e1420;
  font-family: Arial, sans-serif;
}
header {
  color: #fff;
  padding: 10px;
  background: #1e293b;
}
main {
  margin: auto;
  padding: 20px;
  max-width: 1100px;
}
textarea {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  resize: vertical;
  min-height: 200px;
  border-radius: 6px;
  border: 1px solid #ccc;
}
img {
  max-width: 100%;
}
.tools {
  gap: 10px;
  display: grid;
  margin: 15px 0;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
}
button {
  color: #fff;
  border: none;
  padding: 10px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 6px;
  background: #2f416a;
}
button:hover {
  background: #1d4ed8;
}
.stats {
  padding: 12px;
  color: #939393;
  line-height: 1.7;
  border-radius: 6px;
  margin: 10px 0px 10px;
  background: #ffffff14;
}
footer {
  padding: 15px;
  color: #9e9e9e;
  font-size: 14px;
  text-align: center;
  background: #05060c;
}
.find-replace input {
  outline: 0;
  width: 100%;
  border: 0px;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 5px;
  border-radius: 5px;
}

.logo img {
  max-height: 60px;
  /* filter: invert(1); */
}
.top-content {
  text-align: left;
  margin-left: 20px;
}
.top-content h1 {
  font-size: 22px;
  margin: 0px 0px 5px;
}
.top-content p {
  margin: 0px;
  color: #9e9e9e;
  font-size: 14px;
}
.container {
  margin: auto;
  display: flex;
  padding: 0px 20px;
  max-width: 1100px;
  align-items: center;
}
.banner-image {
  border-radius: 10px;
  margin-bottom: 20px;
}
.body-text {
  color: #9e9e9e;
  font-size: 14px;
  line-height: 22px;
  margin: 0px 0px 15px;
}
.body-title {
  color: #fff;
  margin-top: 20px;
  margin-bottom: 10px;
}
ul.body-text {
  padding-left: 15px;
}
.margin-top-50 {
  margin-top: 50px;
}
.meta-buttons {
  text-align: right;
}
.meta-buttons button {
  margin: 5px 5px;
  padding: 5px 10px;
  background: #4c4c4c;
}
.faq_head {
  margin: 15px 0px 5px;
  color: #cfcfcf;
}
footer a {
  color: #9e9e9e;
  text-decoration: none;
}
footer a:hover {
  color: #ffffff;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.more-links {
  margin: auto;
  padding: 20px;
  max-width: 1100px;
}
.more-links-container {
  background: #0000001f;
}
.more-links a {
  text-decoration: none;
  padding: 5px 10px;
  margin: 5px 10px;
  display: inline-block;
  color: #6c6c6c;
  font-size: 15px;
}
.footer-container {
  margin: auto;
  display: flex;
  max-width: 1100px;
  align-items: center;
  justify-content: space-between;
}
.copy-right,
.footer-links {
  font-size: 13px;
}
.bottom-menu-section {
  width: 100%;
  padding: 0px;
  padding-top: 10px;
  text-align: center;
  margin: 10px 0px 0px;
  border-top: 2px solid #585858;
}
.bottom-menu-section li {
  display: inline-block;
}
.bottom-menu-section li a {
  display: block;
  color: #a9a9a9;
  font-size: 15px;
  margin: 5pX 2pX;
  padding: 5px 10px;
  background: #505050;
  border-radius: 15px;
  text-decoration: none;
}
.bottom-menu-section li a:hover {
  color:#fff;
}
@media (max-width: 500px) {
  .container {
    align-items: start;
    flex-direction: column;
  }
  .logo img {
    max-height: 45px;
    margin-bottom: 15px;
  }
  .top-content h1 {
    font-size: 15px;
    margin: 0px 0px 5px;
  }
  .top-content p {
    margin: 0px;
    color: #9e9e9e;
    font-size: 12px;
  }
  .top-content {
    text-align: left;
    margin-left: 0px;
  }
  .bottom-menu-section {
    display:none;
  }
}
