/* BREAKPOINTS */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 73%;
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 66%;
  }
}
@media only screen and (max-width: 62em) {
  html {
    font-size: 56%;
  }
}
@media only screen and (max-width: 48em) {
  html {
    font-size: 52%;
  }
}
@media only screen and (max-width: 36em) {
  html {
    font-size: 45%;
  }
}

a,
a:link,
a:visited {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  display: inline-block;
}

body {
  background-image: var(--bg--img);
  background-position: var(--bg--pos);
  background-size: var(--bg--size);
  font-family: Arial, Helvetica, sans-serif;
  position: relative;
  width: 100vw;
  height: 100vh;
  min-width: 320px;
  min-height: 480px;
  display: flex;
}

:root {
  /* Dark mode */
  /* Light mode */
  /* Variables Globales*/
  --background: rgba(255,255,255,.05);
  --br: 10px;
  --border: solid 1px rgba(255,255,255,.1);
  --bshadow: 3px 3px 10px 1px rgba(0,0,0,.5);
  --bdfilter: blur(6px);
}
@media (prefers-color-scheme: dark) {
  :root {
    --clr--text: rgba(255,255,255,.7);
    --bg--size: cover;
    --bg--img: url(../img/1.jpg);
    --bg--size: normal;
    --clr--text--btn: #FFF5;
  }
}
@media (prefers-color-scheme: light) {
  :root {
    --clr--text: rgba(20,30,39,.7);
    --bg--pos: center;
    --bg--size: cover;
    --bg--img: url(../img/12.jpg);
    --clr--text--btn: #141E2750;
  }
}

.hidden {
  display: none !important;
}

.glass {
  background-color: var(--background);
  -webkit-backdrop-filter: var(--bdfilter);
  backdrop-filter: var(--bdfilter);
  border: var(--border);
  border-radius: var(--br);
  box-shadow: var(--bshadow);
}

.btn-active {
  box-shadow: 0 0.1rem 0.57rem 0.1rem var(--clr--text--btn);
}

@font-face {
  font-family: "DZFont";
  src: url("../../src/Aero.ttf") format("truetype");
}
.container {
  max-width: 1200px;
  max-height: 1000px;
  width: 80%;
  margin: 5vh auto;
  display: flex;
  align-items: center;
  text-align: center;
}
@media only screen and (max-width: 62em) {
  .container {
    width: 80%;
  }
}
@media only screen and (max-width: 48em) {
  .container {
    width: 85%;
  }
}
@media only screen and (max-width: 36em) {
  .container {
    width: 90%;
  }
}
.container__sidebar {
  width: 20%;
}
@media only screen and (max-width: 75em) {
  .container__sidebar {
    width: 20%;
  }
}
@media only screen and (max-width: 62em) {
  .container__sidebar {
    width: 24%;
  }
}
@media only screen and (max-width: 48em) {
  .container__sidebar {
    width: 28%;
  }
}
@media only screen and (max-width: 36em) {
  .container__sidebar {
    width: 32%;
  }
}
.container__sidebar__profilebox {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 0 1.4rem;
}
.container__sidebar__profilebox--img {
  margin: 1.4rem auto;
  width: 90%;
  border-radius: 50%;
  opacity: 0.9;
}
.container__sidebar__profilebox__basicinfo {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.container__sidebar__profilebox__basicinfo--name {
  width: 100%;
  text-align: left;
  color: var(--clr--text);
  font-size: 2.2rem;
}
.container__sidebar__profilebox__basicinfo--line {
  opacity: 0.5;
  margin: 0.2rem 0;
}
.container__sidebar__profilebox__basicinfo--job {
  width: 100%;
  text-align: right;
  color: var(--clr--text);
  font-size: 1.2rem;
}
.container__sidebar__profilebox__socialmedia {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 10px;
}
.container__sidebar__profilebox__socialmedia--item {
  border-radius: 80%;
  color: var(--clr--text);
  font-size: 3rem;
  margin: 0.2rem;
  padding: 0.5rem 0.8rem;
}
.container__sidebar__profilebox__socialmedia--item:hover {
  text-shadow: 0 0.06rem 0.06rem var(--clr--text--btn);
}
.container__sidebar__actionsbox__box {
  margin: 1.5rem 0;
}
.container__sidebar__actionsbox__box--item {
  font-weight: 500;
  border-radius: 0.55rem;
  display: inline-block;
  width: 80%;
  color: var(--clr--text);
  background-color: rgba(240, 240, 240, 0.0235294118);
  font-size: 1.5rem;
  padding: 0.2rem 0;
  margin: 0 auto;
  text-shadow: 0 0.05rem 1.14rem var(--clr--text--btn);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
@media only screen and (max-width: 75em) {
  .container__sidebar__actionsbox__box--item {
    width: 82.5%;
  }
}
@media only screen and (max-width: 62em) {
  .container__sidebar__actionsbox__box--item {
    width: 85%;
  }
}
@media only screen and (max-width: 48em) {
  .container__sidebar__actionsbox__box--item {
    width: 87.5%;
  }
}
@media only screen and (max-width: 36em) {
  .container__sidebar__actionsbox__box--item {
    width: 90%;
  }
}
.container__sidebar__actionsbox__box--item:hover {
  box-shadow: 0 0.1rem 0.57rem 0.1rem var(--clr--text--btn);
}
.container__sidebar__actionsbox__box--item:focus {
  box-shadow: 0 0.1rem 0.57rem 0.1rem var(--clr--text--btn);
}
.container__sidebar__actionsbox__box--item i {
  display: inline-block;
  border: 1px solid var(--clr--text);
  border-radius: 50%;
  padding: 3px;
  text-align: center;
}

.footer {
  position: absolute;
  bottom: 0px;
  height: 3vh;
  width: 100%;
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  background-color: black;
}
.footer__container {
  max-width: 1000px;
}
.footer__container--box {
  font-size: 1.2rem;
  color: white;
}

.adorno {
  position: absolute;
  bottom: 2.8rem;
  right: 2.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
  width: 28.7rem;
  height: 28.7rem;
}
.adorno__container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.adorno__container__ring {
  position: relative;
  width: 17.2rem;
  height: 17.2rem;
  margin: -3.75rem;
  border-radius: 50%;
  border: 0.46rem solid transparent;
  border-top: 0.46rem solid #24ecff;
  animation: animate 4s linear infinite;
}
.adorno__container__ring::before {
  content: "";
  position: absolute;
  top: 1.3rem;
  right: 1.3rem;
  border-radius: 50%;
  width: 1.72rem;
  height: 1.72rem;
  background: #24ecff;
  box-shadow: 0 0 0 0.57rem rgba(36, 236, 255, 0.2), 0 0 0 1.15rem rgba(36, 236, 255, 0.1333333333), 0 0 0 2.3rem rgba(36, 236, 255, 0.0666666667), 0 0 2.3rem #24ecff, 0 0 5.74rem #24ecff;
}
.adorno__container__ring:nth-child(2) {
  animation: animate2 4s linear infinite;
  border-top: 0.46rem solid transparent;
  border-left: 0.46rem solid #93ff2d;
  animation-delay: -1s;
}
.adorno__container__ring:nth-child(2)::before {
  content: "";
  position: absolute;
  top: initial;
  bottom: 1.37rem;
  left: 1.37rem;
  border-radius: 50%;
  width: 1.72rem;
  height: 1.72rem;
  background: #93ff2d;
  box-shadow: 0 0 0 0.57rem rgba(147, 255, 45, 0.2), 0 0 0 1.15rem rgba(147, 255, 45, 0.1333333333), 0 0 0 2.3rem rgba(147, 255, 45, 0.0666666667), 0 0 2.3rem #93ff2d, 0 0 5.74rem #93ff2d;
}
.adorno__container__ring:nth-child(3) {
  animation: animate2 4s linear infinite;
  animation-delay: -3s;
  position: absolute;
  top: -66.66%;
  border-top: 0.46rem solid transparent;
  border-left: 0.46rem solid #e41cf8;
}
.adorno__container__ring:nth-child(3)::before {
  content: "";
  position: absolute;
  top: initial;
  bottom: 1.37rem;
  left: 1.37rem;
  border-radius: 50%;
  width: 1.72rem;
  height: 1.72rem;
  background: #e41cf8;
  box-shadow: 0 0 0 0.57rem rgba(228, 28, 248, 0.2), 0 0 0 1.15rem rgba(228, 28, 248, 0.1333333333), 0 0 0 2.3rem rgba(228, 28, 248, 0.0666666667), 0 0 2.3rem #e41cf8, 0 0 5.74rem #e41cf8;
}
@keyframes animate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate2 {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes animate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=styles.css.map */
