@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

.body-bg {
  background-color: #222 !important;
  margin: 0px !important;
}

.container {
  flex: 1;
  flex-direction: column;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #222;
}

.inner-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100vh;
  justify-content: space-between;
  align-items: center;
  background-color: #222;
}

.screen {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  justify-content: space-between;
  align-items: center;
}

.screen-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 90%;
  justify-content: space-evenly;
  align-items: center;
  border-top: 1px solid #444;
}

.top-banner {
  flex: 1;
  display: flex;
  flex-direction: row;
  width: 90%;
  height: 8%;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}

.top-banner-text {
  color: #cc66ff;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: bold;
  padding-right: 20px;
}

.top-banner-icon {
  color: #cc66ff;
  padding-right: 4px;
}

.logo {
  height: 80%;
}

.content {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: 100%;
  width: 98%;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
  margin-top: 10px;
  margin-bottom: 10px;
  scrollbar-width: auto;
  scrollbar-color: #cc66ff #222;
}

.content::-webkit-scrollbar {
  width: 8px;
}

.content::-webkit-scrollbar-track {
  background: #222;
  border-radius: 20px;
}

.content::-webkit-scrollbar-thumb {
  background: #cc66ff;
  border-radius: 20px;
}

.content::-webkit-scrollbar-thumb:hover {
  background: #d582fe;
}

.content h1 {
  color: #cc66ff;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.content h2 {
  color: #cc66ff;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
}

.content p {
  margin-bottom: 15px;
  margin-left: 20px;
}

.content ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.content li {
  margin-bottom: 8px;
}

.contact-link {
  color: #cc66ff;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

@media (max-width: 750px) {
  .logo {
    height: 60% !important;
  }
}