*,
*::after,
*::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-size: 100%;
    font-family: "Orbitron", sans-serif;

}

a {
    text-decoration: none;
    color: inherit;

    &:visited {
        color: inherit;
    }
}

button {
    font-family: "Orbitron", sans-serif;
}

li {
    list-style-type: none;

}
#profile {
  position: fixed;
  bottom: 2%;
  right: 3%;
  z-index: 999;
  height: 160px;
  width: 160px;

  &:hover {
    > #icon {
      > .inner {
        > a {
          opacity: 1;
        }
      }
    }

    > #main {
      &::before {
        background-size: 180%;
      }
    }
  }

  > #main {
    position: relative;
    width: 70%;
    height: 70%;
    cursor: pointer;
    background-color: rgb(0, 0, 0);
    border-radius: 50% 10%;
    overflow: hidden;
    border: none;
    outline: none;
    margin-left: auto;

    &::before {
      content: "";
      position: absolute;
      width: 94%;
      height: 94%;
      left: 3%;
      top: 3%;
      background-color: blueviolet;
      z-index: 2;
      transition: 0.8s;
      border-radius: 50% 10%;
      background-image: url(../img/photo_2025-03-03_00-46-08.jpg);
      background-size: 150%;
      background-repeat: no-repeat;
      background-position: center;
    }

    &::after {
      content: "";
      position: absolute;
      width: 55%;
      height: 140%;
      left: 18%;
      top: -20%;
      transform: rotate(-40deg);
      background-color: gold;
      z-index: 1;
      animation: profile-anime 80s linear infinite;
    }
  }

  > span {
    color: rgb(179, 179, 179);
    text-align: center;
    font-size: 100%;
    display: block;
    padding-left: 20px;
    padding-top: 7px;
    font-style: italic;
  }

  #icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    z-index: 99;

    > .inner {
      display: flex;
      flex-wrap: wrap;
      position: relative;
      width: 100%;
      height: 100%;
      cursor: pointer;
      /* &:hover {
> a {
opacity: 1;
}
} */

      > a {
        position: absolute;
        right: 30%;
        transition: 0.8s;
        right: 77%;
        opacity: 0;

        &:nth-of-type(1) {
          color: purple;

          top: 0%;
        }

        &:nth-of-type(2) {
          top: 22%;
          color: blue;
        }

        &:nth-of-type(3) {
          top: 44%;
          color: black;
        }

        &:nth-of-type(4) {
          top: 65%;
          color: rgb(75, 165, 201);
        }
      }
    }
  }
}
