body {
  background-color: #120B09;
  color: #ddd;
  padding: 0;
  margin: 0;
}

/* Chrome, Safari, Edge */
::-webkit-scrollbar {
  display: none;
}

/* Firefox */
html {
  scrollbar-width: none;
}

/*footer*/
.site-footer {
  background-color: rgba(255, 255, 255, 0.1);
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.footer-container {
  
}
.footer-section {
  font-size: 16px;
  text-align: center;
  padding-bottom: 10px;
}
.footer-section h3 {
  font-size: 20px;
}
.footer-section a {
  margin: 10px;
}
.footer-bottom {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  border-top: 0.1px solid #ddd;
  font-weight: 200;
  color: #888;
  font-size: 14px;
}
.amirr {
  color: rgba(188, 124, 82, 1);
}


@media (min-width: 800px) {
  .site-footer {
    display: block;
  }
  .footer-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }
  .footer-section {
    text-align: left;
  }
  .footer-section a {
    margin-left: 0;
  }
  .footer-bottom {
    margin-left: 10vw;
    margin-right: 10vw;
    margin-top: 10px;
  }
}
/**/