html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  width: 100dvw;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  font-style: normal;
}

header {
  position: sticky;
  top: 0;
  display: flex;
  height: 80px;
  width: 100%;
  justify-content: center;
  align-items: center;
  background-color: rgb(200, 255, 0);
  z-index: 10;
}
header .title {
  font-size: 28px;
  font-weight: bold;
  color: #000;
  text-shadow: 3px 3px 3px #fff;
}

main {
  position: relative;
  display: grid;
  grid-template-columns: 360px 1fr;
  grid-template-rows: 80px 1fr;
  grid-template-areas: "a a" "b c";
}
main .subjects {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  grid-area: a;
}
main .subjects .subject {
  font-size: 24px;
}
main .move_control {
  grid-area: b;
  position: sticky;
  top: 160px;
  left: 60px;
  height: 30em;
  width: 240px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  background-color: #c9c9c9;
  padding: 0.3em 0;
}
main .move_control a {
  text-decoration: none;
  color: #000;
  padding: 0.3em 0.8em;
}
main .contents {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  top: 300px;
}
main .contents .content {
  margin: 30px 0;
  scroll-margin-top: 80px;
}
main .contents .content:first-of-type {
  margin: 0 0 30px 0;
}
main .contents .content .mod_name {
  font-size: 20px;
  font-weight: bold;
}
main .contents .content .settings {
  display: flex;
  flex-direction: column;
  justify-content: start;
}
main .contents .content .settings .setting {
  padding: 1em 0;
  scroll-margin-top: 80px;
}
main .contents .content .settings .setting:first-of-type {
  padding: 0 0 0.3em 0;
}
main .contents .content .settings .setting:last-of-type {
  padding: 0.3em 0 0 0;
}
main .contents .content .settings .setting .details .initial {
  padding: 0.5em 0 0 0;
}

code {
  height: 1.6em;
  padding: 0.3em 0.5em;
  margin: 0 0.2em;
  border-radius: 5px;
  background: #f1f2f3;
  color: #404040;
}/*# sourceMappingURL=style.css.map */