* {
  margin: 0;
}

/* System Fonts as used by GitHub */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

#header {
  width: 100%;
  box-sizing: border-box;
  padding: 1em;
  padding-bottom: 2em;
  display: grid;
  grid-template-areas: "photo" "title" "subtitle";
  grid-template-columns: minmax(auto, 400px);
  justify-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #363636;
  color: white;
}
#header #photo {
  grid-area: photo;
  width: 100%;
  border-radius: 2.5em;
  border-color: transparent;
}
#header #title {
  grid-area: title;
  padding-top: 0.5em;
  font-size: 2.5em;
  font-variant: small-caps;
  font-weight: 600;
  text-align: center;
}
#header #subtitle {
  grid-area: subtitle;
  padding-top: 0.5em;
  font-style: italic;
  font-weight: normal;
  text-align: center;
}

#menu {
  width: 100%;
  box-sizing: border-box;
  padding: 1em;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #363636;
  color: white;
  border-bottom: 1px solid #505050;
}
#menu a {
  display: inline;
  margin: 0 0.3em;
  padding: 0.2em 0.5em;
  font-size: 1.5em;
  font-variant: small-caps;
  color: inherit;
  text-decoration: none;
  border: 1px solid #505050;
  border-radius: 0.3em;
}
#menu .active {
  background-color: #505050;
}

#contentWrapper {
  padding: 1em;
  box-sizing: border-box;
  width: 100%;
}

#content {
  margin: 0 auto;
  max-width: 80em;
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 950px) {
  #content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 660px) {
  #content {
    grid-template-columns: repeat(1, 1fr);
  }
}
#content li {
  margin-top: 0.25rem;
}
#content h1 {
  font-size: 2rem;
  line-height: 1.125;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
#content .subtitle {
  margin-top: -1.25rem;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
#content a {
  color: inherit;
}
#content p {
  margin-top: 0.5rem;
}
#content article {
  box-sizing: border-box;
  border-radius: 0.5em;
  padding: 1em;
}
#content .gap {
  height: 1em;
}

#bigTextWrapper {
  margin: 0 auto;
  max-width: 80em;
  margin-top: 3em;
  padding: 0 2em;
}
#bigTextWrapper li {
  margin-top: 0.25rem;
}
#bigTextWrapper h1 {
  font-size: 2rem;
  line-height: 1.125;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
#bigTextWrapper .subtitle {
  margin-top: -1.25rem;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
#bigTextWrapper p {
  margin-bottom: 0.5rem;
}
#bigTextWrapper a {
  color: inherit;
}
#bigTextWrapper article {
  margin-top: 2em;
}
#bigTextWrapper article .gap {
  height: 5em;
}

.topic {
  box-sizing: border-box;
  border-radius: 0.5em;
  padding: 1em;
}

@media screen and (min-width: 660px) {
  .grid-span-2 {
    grid-column: span 2;
  }
}

.bg-yellow {
  background-color: #ffdd57;
}

.bg-green {
  background-color: #48c774;
  color: white;
}

.bg-blue {
  background-color: #3273dc;
  color: white;
}

.bg-red {
  background-color: #f14668;
  color: white;
}

.login-form {
  padding-top: 3rem;
  width: 100%;
}
.login-form .inner {
  border: 1px solid #505050;
  border-radius: 0.3em;
  padding: 1em;
  margin: 0 auto;
  max-width: 30rem;
}
.login-form * {
  margin-top: 0.5em;
}
.login-form input {
  display: block;
  width: 100%;
}
.login-form button {
  display: block;
  padding: 0.4em;
  background-color: #3273dc;
  border-color: #3273dc;
  border-radius: 0.3em;
  border-style: solid;
  color: white;
}

.spinner {
  border: 1em solid #f3f3f3; /* Light grey */
  border-top: 1em solid #3273dc; /* Blue */
  border-radius: 50%;
  width: 2em;
  height: 2em;
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.not-important {
  color: lightgray;
}

/*# sourceMappingURL=style.css.map */
