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

body, html {
  width: 100%;
  height: auto;
  background-color: #080808;
  color: #f3f3f3;
  font-family: "General Sans", sans-serif;
  transition: 0.3s;
}

body {
  display: flex;
  flex-direction: column;
}

@keyframes fadeout {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
a {
  text-decoration: none;
}

header .content {
  position: fixed;
}

header .content {
  z-index: 2;
}
header .content .button-theme {
  width: 5rem;
  height: 2.3rem;
  padding: 0.5rem 0.5rem;
  border: 0.1rem solid #f3f3f3;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #080808;
}
header .content .button-theme .circle {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: #f3f3f3;
  position: relative;
  animation: moveCirclereverse 0.5s;
  z-index: 2;
}
@keyframes moveCircle {
  from {
    left: 0%;
  }
  to {
    left: 65%;
  }
}
@keyframes moveCirclereverse {
  from {
    left: 65%;
  }
  to {
    left: 0%;
  }
}
header .content .button-theme:hover {
  cursor: pointer;
}
header .content #button-theme.active {
  background-color: #f3f3f3;
  border-color: #080808;
}
header .content #button-theme.active .circle {
  background-color: #080808;
}
header .content .background-sm {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
header .content .background-sm i {
  position: absolute;
  top: 0.8rem;
  left: 0.7rem;
  font-size: 20px;
  z-index: 1;
}
header .content .background-sm #sun {
  left: 3.2rem;
}
header .content .button-theme + .background-sm {
  background-color: rgba(8, 8, 8, 0);
}

header {
  width: 100%;
  height: 12vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .content {
  width: 95%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
header .content .btn-lang {
  border-radius: 0.6rem;
}
header .content .btn-lang button {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0.3rem;
  font-family: "General Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 0.5rem;
  border: 0.1rem solid #f3f3f3;
  background-color: #080808;
  transition: 0.3s;
  color: #f3f3f3;
}
header .content .btn-lang button i {
  font-size: 20px;
}
header .content .btn-lang button:hover {
  cursor: pointer;
  background-color: #f3f3f3;
  color: #080808;
}

#bg-circle.active {
  background-color: #f3f3f3;
}

main {
  width: 100%;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .content {
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}
main .content .info-content {
  margin-top: -1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
main .content .info-content .username {
  display: flex;
  justify-content: center;
}
main .content .info-content .username h2 {
  width: 30%;
}
main .content .info-content .username h2:hover {
  text-decoration: underline;
  cursor: pointer;
}
main .content .info-content p {
  color: #bbbbbb;
  font-size: 15px;
}

.content .rect-link {
  border: 0.1rem solid #f3f3f3;
  border-radius: 0.5rem;
  height: 3.5rem;
  width: 16rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
}
.content .rect-link .container-info {
  text-align: start;
  width: 90%;
  position: relative;
  color: #bbbbbb;
}
.content .rect-link .container-info h3 {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 16px;
  position: relative;
}
.content .rect-link .container-info h3 i {
  font-size: 22px;
}
.content #linkedin:hover {
  cursor: pointer;
  scale: 1.1;
  background-color: #1a1a1a;
  border-color: #448bb4;
  color: #448bb4;
}
.content #github:hover {
  cursor: pointer;
  scale: 1.1;
  background-color: #1a1a1a;
  border-color: #694de2;
  color: #694de2;
}
.content #cv:hover {
  cursor: pointer;
  scale: 1.1;
  background-color: #1a1a1a;
  border-color: #e3e65d;
  color: #e3e65d;
}

.content .circles {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0.8rem;
}
.content .circles #red {
  width: 1rem;
  height: 1rem;
  position: relative;
  border: none;
  border-radius: 50%;
  background-color: #da4d4d;
  animation: moveDot 0.8s infinite;
  animation-delay: 250ms;
}
.content .circles #yellow {
  width: 1rem;
  height: 1rem;
  position: relative;
  border: none;
  border-radius: 50%;
  background-color: #e3e65d;
  animation: moveDot 0.8s infinite;
  animation-delay: 100ms;
}
.content .circles #green {
  width: 1rem;
  height: 1rem;
  position: relative;
  border: none;
  border-radius: 50%;
  background-color: #5fe65f;
  animation: moveDot 0.8s infinite;
  animation-delay: -50ms;
}
@keyframes moveDot {
  0% {
    bottom: 0rem;
  }
  50% {
    bottom: 0.5rem;
  }
  100% {
    bottom: 0rem;
  }
}

.content .status {
  display: flex;
  justify-content: flex-start;
  height: 0rem;
  position: relative;
  top: 3.2rem;
  left: 0.2rem;
}
.content .status .container-status {
  display: flex;
  justify-content: center;
  align-items: center;
}
.content .status .container-status .bg-circle {
  background-color: #080808;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: none;
  position: relative;
  left: 1.5rem;
  transition: 0.3s;
}
.content .status .container-status .bg-circle {
  z-index: 1;
}
.content .status .container-status #status-ball {
  width: 2rem;
  height: 2rem;
  position: relative;
  border: none;
  border-radius: 50%;
  background-color: #5fe65f;
}
.content .user-photo img {
  width: 12rem;
  border-radius: 50%;
}

#status-ball .tooltip {
  visibility: hidden;
  position: relative;
  left: 2.5rem;
  bottom: 1rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background-color: #1a1a1a;
}

#status-ball:hover > .tooltip {
  visibility: visible;
  animation: fadein 0.3s;
}
@keyframes fadein {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}

.content-coppied {
  display: flex;
  justify-content: flex-end;
}
.content-coppied .rect-coppied {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1rem;
  margin: 0.5rem 1rem;
  border: 0.1rem solid #f3f3f3;
  border-radius: 0.5rem;
  background-color: #1a1a1a;
  position: fixed;
  bottom: 0.5rem;
  right: 0rem;
  visibility: hidden;
}
.content-coppied .rect-coppied h4 {
  font-weight: 500;
}
.content-coppied #coppied.showCoppied {
  visibility: visible;
  animation: moveLeft 0.5s, fadeOut 0.5s 2.5s;
}
@keyframes moveLeft {
  from {
    right: -15rem;
    opacity: 0.5;
  }
  to {
    right: 0rem;
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

img, p, h4 {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.loading {
  width: 100%;
  height: 100vh;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  align-items: center;
  padding-left: 5%;
  font-size: 64px;
  position: fixed;
  background-color: #080808;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
}
.loading .container-text {
  display: flex;
  flex-direction: row;
}
.loading .bar-loading {
  width: 0%;
  height: 0.2rem;
  background-color: #f3f3f3;
}
.loading #bar-loading.complete {
  animation: shadow_bar 0.2s;
}
@keyframes shadow_bar {
  from {
    box-shadow: 0rem 0rem 0rem #f3f3f3, 0rem 0rem 0rem #f3f3f3;
  }
  to {
    box-shadow: 0rem 0.1rem 0.2rem #f3f3f3, 0rem -0.1rem 0.2rem #f3f3f3;
  }
}
.loading .bar-base {
  width: 80%;
  height: 0.2rem;
  background-color: #1a1a1a;
}

#loadingBg.fadeOut {
  animation: fadeOutBg 0.8s forwards;
}

@keyframes fadeOutBg {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
body.active {
  background-color: #f3f3f3;
  color: #080808;
}
body.active #coppied {
  color: #f3f3f3;
}
body.active #dot-move {
  left: 65%;
  animation: moveCircle 0.5s;
}
body.active .btn-lang button {
  background-color: #f3f3f3;
  border-color: #080808;
  color: #080808;
}
body.active .btn-lang button:hover {
  background-color: #080808;
  color: #f3f3f3;
}
body.active .rect-link {
  border-color: #080808;
}
body.active .rect-link span, body.active .rect-link i {
  color: #080808;
}
body.active #linkedin:hover span, body.active #linkedin:hover i {
  color: #f3f3f3;
}
body.active #github:hover span, body.active #github:hover i {
  color: #f3f3f3;
}
body.active #cv:hover span, body.active #cv:hover i {
  color: #f3f3f3;
}
body.active .container-status #status-ball #status-text {
  color: #f3f3f3;
}
body.active .content-coppied {
  background-color: #f3f3f3;
}
body.active #real-name {
  color: #1a1a1a;
}

@media (max-width: 520px) {
  .loading {
    font-size: 32px;
  }
}
@media (max-width: 260px) {
  .loading {
    font-size: 28px;
  }
}/*# sourceMappingURL=style.css.map */