.profile-photo {
    max-width: 200px;
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.switch {
    display: inline-block;
    margin-left: 20px;
}
    
.theme-switch {
  display: inline-block;
  height: 34px;
  position: relative;
  width: 60px;
}

.theme-switch input {
  display:none;
}

.slider {
  background-color: #ccc;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: .4s;
}

.slider:before {
  background-color: #fff;
  bottom: 4px;
  content: "";
  height: 26px;
  left: 4px;
  position: absolute;
  transition: .4s;
  width: 26px;
}

input:checked + .slider {
  background-color: #2b2b2b;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

html body {
    color: #0f0f0f;
    background-color: #fefefe;
    transition: background-color 0.5s ease, color 0.5s ease;
}

h1, .language-plaintext {
    transition: color 0.5s ease;
}

html[data-theme="dark"] body {
    color: #fefefe;
    background-color: #121212;
    transition: background-color 0.5s ease, color 0.5s ease;
}

html[data-theme="dark"] h1 {
    color: #fefefe;
}

html[data-theme="dark"] .language-plaintext {
    color: #fefefe;
}

li a i {
    color: #0f0f0f;
    font-size: 2em;
}

li a:hover i {
    color: #ff9430;
}

ul a:hover {
  color: #ff9430;
  font-weight: normal;
}

html[data-theme="dark"] li a:hover i {
    color: #ff9430;
}

html[data-theme="dark"] li a i {
    color: #fefefe;
}

p a:hover {
    color: #ff9430;
    font-weight: normal;
}

html[data-theme="dark"] a {
    color: #d06a09;
    font-weight: normal;
}

html[data-theme="dark"] a:hover {
    color: #60b5ff;
    font-weight: normal;
}
