@font-face {
  font-family: "Moon 2.0";
  src: url("/font/Moon2.0-Regular.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Moon 2.0";
  src: url("/font/Moon2.0-Bold.otf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
html {
  min-height: 100%;
}

body {
  background-color: #101315;
  color: #f4f2ff;
  font-family: "Moon 2.0";
  letter-spacing: 0.1875rem;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body #myVideo {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  filter: grayscale(80%) blur(2px);
  opacity: 0.15;
}
body .container {
  background-color: #1d2225;
  position: relative;
  left: 0;
  right: 0;
  border-radius: 5px;
  max-width: 605px;
  margin: 18px auto;
  text-align: center;
  z-index: 1;
  /* The switch - the box around the slider */
}
body .container #switch__wrapper {
  text-align: right;
  margin: 20px;
  display: none;
}
body .container .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  /* Hide default HTML checkbox */
  /* The slider */
}
body .container .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
body .container .switch input:checked + .slider {
  background-color: #101315;
}
body .container .switch input:focus + .slider {
  box-shadow: 0 0 1px #101315;
}
body .container .switch input:checked + .slider:before {
  transform: translateX(26px);
}
body .container .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  /* Rounded sliders */
}
body .container .switch .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  transition: 0.4s;
  background-repeat: no-repeat;
}
body .container .switch .slider.round {
  border-radius: 34px;
}
body .container .switch .slider.round:before {
  border-radius: 50%;
}
body .container .content__wrapper {
  padding: 50px;
}
body .container #pic {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
body .container h1 {
  font-weight: bold;
  margin: 1.6rem 0 0.4375rem 0;
}
body .container h2 {
  font-size: 17px;
  color: #358cc3;
  margin: 0;
}
body .container h3 {
  color: #696969;
  text-align: left;
}
body .container .socials {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
body .container .socials .social {
  text-decoration: none;
  display: flex;
  align-items: center;
  margin: 0 12px;
  color: #f4f2ff;
}
body .container .socials .social:hover {
  cursor: pointer;
}
body .container .socials .social img {
  height: 32px;
}
body .container .socials .social span {
  margin-left: 10px;
}
body .container #games__section {
  margin-top: 50px;
}
body .container #games__section .games .game {
  height: 55px;
  margin: 15px 5px 0 0;
}
body .container #games__section .games .text {
  height: 45px;
}
body .container #skills__section {
  margin-top: 40px;
  text-align: left;
}
body .container #skills__section .skills {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
body .container #skills__section .skills .skill {
  display: flex;
  align-items: center;
  margin-top: 8px;
}
body .container #skills__section .skills .skill img {
  width: 32px;
}
body .container #skills__section .skills .skill .logo-only {
  height: 30px;
  width: auto;
}
body .container #skills__section .skills .skill span {
  margin-left: 10px;
}
body footer {
  z-index: 1;
  text-align: center;
}
body footer a {
  color: rgba(244, 242, 255, 0.2);
  font-size: 10px;
  transition: 0.3s;
}
body footer a:hover {
  color: #f4f2ff;
}

.tooltip {
  position: relative;
  display: inline-block;
}
.tooltip .tooltiptext {
  font-size: 14px;
  visibility: hidden;
  width: 140px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 110%;
  left: 10%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
  transition: 0.3s;
}
.tooltip .tooltiptext.clicked {
  background-color: #358cc3;
}
.tooltip .tooltiptext.clicked::after {
  border-color: #358cc3 transparent transparent transparent;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
  transition: 0.3s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

@media (min-height: 927px) {
  body {
    align-content: center;
    align-items: center;
    height: 100%;
  }
  .container {
    margin: 0 auto !important;
  }
}
@media (max-width: 600px) {
  body {
    background-color: #1d2225;
  }
  body .container {
    margin: 0;
    background-color: initial;
  }
  body video {
    display: none;
  }
}
@media (max-width: 400px) {
  body .container .content__wrapper {
    padding: 50px 30px;
  }
}/*# sourceMappingURL=styles.css.map */