:root {
  --bg-color: #edf2ff;
  --text-color: #00082f;
  --primary-color: #4263eb;
  --primary-color-dark: #364fc7;
  --color-mode: #ffffff;
  --color-moon: #964b00;
  --color-sun: #f39c12;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

body.dark-blue {
  --bg-color: #00082f;
  --text-color: #ffffff;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
  font-family: "Roboto", sans-serif;
}

.checkbox {
  opacity: 0;
  position: absolute;
}

.container {
  text-align: center;
  width: 316px;
  margin: 60px auto;
}

img {
  width: 100%;
}

img.avatar {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  padding: 3.7px;
  border: var(--primary-color) solid 4px;
}

h1 {
  font-size: 32px;
  margin-top: 24px;
  margin-bottom: 8px;
}

.username {
  font-family: "Roboto Mono", monospace;
  font-weight: 500;
  opacity: 0.8;
  font-size: 18px;
}

ul {
  list-style: none;
  margin: 48px 0;
}

.mode {
  height: 53px;
  padding-bottom: 10px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.label {
  background-color: var(--color-mode);
  border-radius: 50px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px;
  position: relative;
  height: 26px;
  width: 50px;

  transform: scale(1.5);
}

.label .ball {
  background-color: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;

  height: 22px;
  width: 22px;

  transform: translate(0px);
  transition: transform 0.2s linear;
}

.checkbox:checked + .label .ball {
  transform: translateX(24px);
}

.fa-moon {
  color: var(--color-moon);
}

.fa-sun {
  color: var(--color-sun);
}

.initial a {
  display: flex;
  justify-content: center;
  padding: 0;
}

ul li a {
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: left;
  background: var(--primary-color);
  color: white;
  text-transform: uppercase;
  font-size: 14px;

  margin-bottom: 16px;
  border-radius: 6px;
  padding-left: 101.5px;
  transition: background 400ms;
}

ul li a:hover {
  background: var(--primary-color-dark);
}

footer {
  font-weight: 500;
  font-size: 12px;
  opacity: 0.6;

  transition: opacity 400ms;
}

footer:hover {
  font-size: 13px;
  opacity: 2;
}

footer a {
  color: var(--text-color);
}

ul li a i {
  padding-right: 10px;
  font-size: 2em;
}

/*.social {
  padding-left: 15px;
}*/
