html {
  font-size: 20px;
  min-width: 100%;
  min-height: 100%;
  background: #fff;
}
body {
  background: none;
}
section#vcard {
  margin-top: 12vh;
}
section#vcard #vcard-card-container {
  background: #eee;
  border: 1px solid #000;
}
section#vcard #vcard-card-container #vcard-profile-image {
  position: absolute;
  top: -5rem;
  border-radius: 50%;
  width: 10rem;
  padding: 5px;
  background: lightgrey;
}
section#vcard #vcard-card-container #vcard-intro-text p {
  font-size: 0.9rem;
  color: #333;
}
section#vcard #vcard-card-container a {
  background: #dee0e6;
  color: #333;
}
section#vcard #vcard-card-container a:hover {
  background: #d6dae0;
}
section#vcard #vcard-card-container #vcard-links {
  min-height: 10rem;
}
section#vcard #vcard-card-container #qrcode {
  min-height: 10rem;
  opacity: 0;
  visibility: hidden;
  display: none;
}
section#vcard #vcard-card-container #qrcode-link svg {
  vertical-align: -0.16rem;
}
div.btn-container {
  position: absolute;
  top: 2rem;
  right: 2.8rem;
}
div.btn-container svg {
  display: inline-block;
  position: relative;
  cursor: default;
  top: -7px;
}
div.btn-container label {
  cursor: pointer;
  font-size: 13px;
  color: #333;
  font-weight: 500;
}
div.btn-container .btn-color-mode-switch {
  display: inline-block;
  margin: 0;
  position: relative;
}
div.btn-container .btn-color-mode-switch > label.btn-color-mode-switch-inner {
  margin: 0;
  width: 140px;
  height: 30px;
  background: #dee0e6;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  display: block;
}
div.btn-container .btn-color-mode-switch > label.btn-color-mode-switch-inner::before {
  content: attr(data-on);
  position: absolute;
  font-size: 0.65rem;
  top: 7px;
  right: 20px;
}
div.btn-container .btn-color-mode-switch > label.btn-color-mode-switch-inner::after {
  content: attr(data-off);
  width: 70px;
  height: 86%;
  background: #d6dae0;
  border-radius: 26px;
  position: absolute;
  left: 2px;
  top: 2px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 6px -2px #212121;
  padding: 5px 0;
}
div.btn-container .btn-color-mode-switch input[type="checkbox"] {
  cursor: pointer;
  width: 50px;
  height: 25px;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 1;
  margin: 0;
}
div.btn-container .btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner {
  background: #333;
  color: rgba(255, 255, 255, 0.54);
}
div.btn-container .btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner::before {
  content: attr(data-off);
  right: auto;
  left: 20px;
}
div.btn-container .btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner::after {
  content: attr(data-on);
  left: 68px;
  background: #343541;
}
body.dark section#vcard #vcard-card-container {
  background: #212121;
}
body.dark section#vcard #vcard-card-container #vcard-intro-text, body.dark section#vcard #vcard-card-container #vcard-intro-text p {
  color: rgba(255, 255, 255, 0.54);
}
body.dark section#vcard #vcard-card-container a {
  background: #343541;
  color: rgba(255, 255, 255, 0.54);
}
body.dark section#vcard #vcard-card-container a:hover {
  background: #373746;
}
body.dark section#vcard div.btn-container svg {
  color: rgba(255, 255, 255, 0.54);
}
@media screen and (max-width: 1200px) {
  body {
    margin-top: 6rem;
  }
  div.btn-container {
    position: relative;
    margin: 3rem auto 0 auto;
    top: revert;
    right: revert;
  }
}
