:root {
  --darkest-font: #46425e;
  --header-footer-bg: #15788c;
  --lightest-font: #ffeecc;
  --accent-color: #00b9be;
  --secondary-accent: #ff6973;
}

h2,
h4 {
  margin-bottom: 20px;
}

input[type="checkbox"] {
  accent-color: var(--header-footer-bg);
  height: 18px;
  width: 30px;
}

button {
  color: var(--lightest-font);
  border: 1px solid var(--accent-color);
  border-radius: 8px;
  background: var(--header-footer-bg);
  padding: 8px;
  margin: 8px 0;
  width: 90%;
  cursor: pointer;
  transition: background 0.3s, border 0.3s;
}

button:hover {
  /* text-decoration: underline; */
  background: var(--accent-color);
}

.bitContainer {
  display: flex;
  align-items: center;
  margin: 8px 0;
}

.bit {
  display: inline-block;
  width: 2ch;
  height: calc(1rem + 0.85vw);
  text-align: center;
  border: solid 1px var(--header-footer-bg);
  border-radius: 4px;
  margin-left: 5px;
  font-weight: bold;
  background-color: white;
}

.sectionsContainer {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.inputSection {
  flex: 1;
  margin-right: 10px;
}

.selectSection {
  flex: 1;
  border-left: 1px solid var(--darkest-font);
  padding-left: 35px;
}

@media (max-width: 768px) {
  .inputSection,
  .selectSection {
    margin-right: 10px;
  }

  .inputSection {
    margin-right: 10px;
  }

  .selectSection {
    margin-right: 0;
  }
}
