:root {
  --white: #eaf2ef;
  --black: #0b090a;
  --teal: #00a9a5;
  --red: #e35d6a;
}

* {
  margin: 0px;
  padding: 0px;
  scroll-padding: 200px;
}

body {
  background: var(--white);
}

.mainWrapper {
  max-width: 1140px;
  margin: 0px auto;
}

header {
  padding: 25px 0px;
  background: var(--black);
  display: grid;
  grid-template-columns: auto auto auto auto auto auto auto auto auto auto;
  justify-content: center;
  row-gap: 10px;
  column-gap: 10px;
  position: fixed;
  width: 100vw;
  height: 150px;
}

header > a {
  background: var(--teal);
  padding: 10px 25px;
  color: var(--white);
  text-decoration: none;
  font-size: 20px;
  border-radius: 5px;
  transition: all 0.5s ease;
}

header > a:hover {
  scale: 0.9;
}

.sectionSpacer {
  height: 200px;
}

.name {
  padding-top: 25px;
}

label {
  font-size: 20px;
  padding: 20px;
}

.nameInput {
  width: 350px;
  height: 35px;
}

.questionsSection {
  margin: 25px 0px;
}

.number-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.question-number {
  padding: 15px;
}

.bookmark-section {
  display: flex;
}

.bookmarkWrapper {
  background: var(--teal);
  margin: 5px;

  width: 45px;
  height: 45px;
  border-radius: 50px;
  overflow: hidden;
}

.red {
  background: var(--red);
}

.bookmark {
  margin: 5px;
  width: 35px;
  height: 35px;
}

.remove {
  width: 0px;
}

.standard-question {
  width: 570px;
  height: 250px;
}

.submitButton {
  width: 300px;
  height: 35px;
}

/* Tablet */

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mainWrapper {
    max-width: 750px;
  }

  header > a {
    padding: 10px 15px;
    font-size: 18px;
  }
}

/* Mobile */

@media screen and (max-width: 767px) {
  .mainWrapper {
    padding: 0px 10vw;
  }

  header {
    grid-template-columns: repeat(auto-fill, 35px);
  }

  header > a {
    padding: 5px 5px;
    font-size: 16px;
  }

  label {
    font-size: 16px;
    padding: 10px;
  }

  .nameInput {
    width: 200px;
    height: 35px;
  }

  .standard-question {
    width: 285px;
    height: 125px;
  }
}
