html,
body {
  height: 100%;
  background-color: #121212;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

main {
  flex: 1;
}

body::-webkit-scrollbar {
  width: 5px;
}

body::-webkit-scrollbar-track {
  background: #181818;
}

body::-webkit-scrollbar-thumb {
  background: #35d779;
  border-radius: 5px;
}

body::-webkit-scrollbar-thumb:hover {
  background: #35d779;
}

body::-webkit-scrollbar-button {
  display: none;
}

@media screen and (max-width: 768px) {
  .logo a {
    font-size: 20px;
  }
  .bottom_text {
    font-size: 12px;
  }
  .bottom_banner_img {
    height: 40px;
  }
}
@media screen and (max-width: 376px) {
  .logo a {
    font-size: 20px;
  }
  .bottom_text {
    font-size: 12px;
  }
  .bottom_banner_img {
    height: 35px;
  }
  .home_frame {
    padding: 0px 10px;
  }
}
