@charset "UTF-8";
html {
  height: 100%;
  font-size: 14px;
}
@media (max-width: 567px) {
  html {
    font-size: 10px;
  }
}

body {
  background: linear-gradient(#c0c0c0, #4a4a4a);
  background-attachment: fixed;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0px;
  padding: 0px;
}

nav {
  margin: 0px;
  background-color: rgba(255, 255, 255, 0.9);
  border-bottom: 3px solid black;
  display: flex;
}
nav .navitem {
  font-size: 1.5rem;
  transition: all 300ms ease;
}
nav .navitem a {
  display: inline-block;
  padding: 0.25em 0.5em;
  color: black;
  text-decoration: none;
}
nav .navitem.active {
  background-color: black;
}
nav .navitem.active a {
  color: #ffffff;
}
nav .navitem:hover:not(.active) {
  background-color: #cdcdcd;
}
nav .navitem:hover:not(.active) a {
  color: black;
}

.content-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.content {
  margin: 1em 1.5em;
  padding: 0px 1.75em;
  border: 2px solid #ffffff;
  box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  background: #ffffff;
  min-width: 300px;
  max-width: 992px;
  font-size: 1.5rem;
  line-height: 1.85rem;
}
.content p {
  margin-bottom: 2rem;
}
.content a {
  color: #303030;
  -webkit-text-decoration: underline solid #303030 1px;
          text-decoration: underline solid #303030 1px;
}
.content a:hover {
  color: black;
  -webkit-text-decoration: underline solid black 2px;
          text-decoration: underline solid black 2px;
}
.content h2,
.content h3 {
  text-align: center;
  border-bottom: 2px solid black;
  margin: 0px;
  margin-bottom: 0.25em;
  padding: 5px;
}
.content h2:not(:first-of-type),
.content h3:not(:first-of-type) {
  margin-top: 1em;
}
.content h2 {
  font-size: 2.5rem;
}
.content h3 {
  font-size: 2rem;
}
.content div.welcome {
  margin: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.content div.welcome img {
  border: 2px solid black;
  border-radius: 50%;
  width: 100px;
  height: 100px;
}
@media (max-width: 800px) {
  .content div.welcome {
    justify-content: space-around;
  }
  .content div.welcome img {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 680px) {
  .content div.welcome h2 {
    width: 100%;
    order: 1;
  }
  .content div.welcome img {
    order: 2;
  }
}
.content ul.level-1 > li {
  margin-bottom: 2rem;
}
.content ul .level-2 > li,
.content ul .level-3 > li {
  padding: 0.5rem 0 0;
}
.content ul .level-2 {
  margin-bottom: 1.5rem;
}
.content ul .level-2 > li {
  font-size: 1.25rem;
  line-height: 1.5rem;
}
.content ul .level-3 {
  margin-bottom: 1rem;
}
.content ul .level-3 > li {
  font-size: 1rem;
  line-height: 1.25rem;
}
.content .stripe-payment {
  text-align: center;
}

html.theme-fun body {
  background-image: url("/img/computer-640.png");
  background-repeat: repeat;
}
html.theme-fun ul.icon-list.level-1 > li::marker {
  content: "💻 ";
}
html.theme-fun ul.icon-list.level-2 > li::marker {
  content: "🖱️ ";
}
html.theme-fun ul.icon-list.level-3 > li::marker {
  content: "💿 ";
}/*# sourceMappingURL=main.css.map */