@import "./variables.css";

* {
  font-family: var(--font1);
  line-height: 1.7;
}

body {
  color: #fff;
  font-size: 15px;
  letter-spacing: 2px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.profile-picture {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10%;
  height: auto;
  max-height: 80px;
  max-width: 80px;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 35px;
  border-radius: 50%;
  backdrop-filter: blur(10px);

  & img {
    height: auto;
    max-width: 80px;
  }
}

.profile-name {
  text-align: center;
  padding: 5px 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  color: #f9cefd;
  text-shadow: #936f96 1px 0 5px;
  background-color: rgba(0, 0, 0, 0.2);
  width: fit-content;
}

.profile-tag {
  text-align: center;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 1.4rem;
  backdrop-filter: blur(10px);
  border-radius: 15px;
}

.profile-text {
  font-family: monospace;
  text-align: center;
  margin: auto;
  padding: 5px;
  width: 20%;
}

.links {
  text-align: center;
  backdrop-filter: blur(10px);
  padding: 20px;
  border: 1px solid white;
  border-width: 2px;
  width: 290px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 40px;
  background: transparent;

  text-decoration: none;
  color: white;
  transition: all 1s;

  & + a {
    margin-top: 25px;
  }

  &:hover {
    color: #000;
    background: #fff;
    transition: all 1s;
  }
}  

q {
  font-family: monospace;
  font-size: 17px;
  font-weight: bold;
}

h1 {
  font-size: 40px;
  letter-spacing: 11px;
  cursor: pointer;
  color: #fff;
  text-shadow: 0 0 1px #fff,
               0 0 5px #fff, 
               0 0 225px #fff;

  & span {
    transition: .5s linear;
  }

  &:hover {
    & span:nth-child(1) {
      margin-right: 1px;

      &:after{
        content: " /";
      }
    }

    & span:nth-child(2) {
      margin-left: 2px
    }
  }
}

.animated-text {
  margin-top: 35px;
  margin-bottom: 30px;
  font-size: 17px;
  font-weight: 500;
  font-family: monospace;
  letter-spacing: 6px;
  cursor: pointer;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 10px #292b29,
               0 0 15px #ccddcc80, 
               0 0 20px #ccddcc30;

  & span {
    transition: .5s linear;
    font-family: var(--font2);
  }

  &:hover {
    & span:nth-child(1) {
      margin-right: 4px
    }

    & span:nth-child(2){
      margin-left: 8px
    }
  }
}