body {
  display: grid;
  overflow: scroll;
  overflow-x: hidden;
  background-color: #111114;
  place-content: center;
  color: #fff;
}

.mainbox {
  margin-top: 50px;
  position: relative;
  height: max-content;
  padding: 10px;
  border: solid #414141;
  border-radius: 10px;
  background-color: #212121;
  width: min(600px, 90vw);
}

.titlebox {
  width: 100%;
  display: flex;
  place-content: center;
}
.title {
  border-bottom: solid #555 2px;
  padding-right: 5px;
  font-family: 'Mozilla Headline', sans-serif;
  font-size: 36px;
}

.sm {
  font-family: 'Mozilla Headline', sans-serif;
  font-size: 12px;
  text-align: center;
  height: 100%;
}

.main {
  /* width: fit-content; */
  text-wrap: stable;
  font-family: 'Inter', sans-serif;
}

.drop {
  /* width: fit-content; */
  cursor: pointer;
  border-bottom: solid #444 2px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.droptext {
  border-left: solid #444 2px;
  padding-left: 20px;
}

.drop_title {
  font-size: 18px;
  margin-bottom: 5px;
  border-bottom: solid #888 2px;
  width: fit-content;
}

.drops {
  margin-top: 10px;
  padding: 10px;
  border: solid #414141;
  border-radius: 10px;
  background-color: #151515;
}

.seperator {
  width: 200px;
  margin-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-left: solid #444 2px;
  border-bottom: solid #555 2px;
}