@font-face {
  font-family: "able_studiodoguVF";
  font-variation-settings: "wdth" 200;
  src: url("./font/able_studiodoguVF.woff") format("woff");
}

* {
  font-family: "AUTHENTICSans-90", "Noto Sans KR", sans-serif;
  font-weight: normal;
  font-style: normal;
}
a {
  color: black;
  text-decoration: none;
}
body {
  margin: 0;
  background-color: rgb(255, 255, 255);
}

.XYZcontainer {
  position: relative;
  text-align: center;
  width: 50vw;
  margin: 0 auto;
  height: 100%;
}

.XYZtitle {
  padding: 2em;
  font-size: 16px;
  border-radius: 50px;
  box-shadow: 3px 3px 4px #c7c7c7, -3px -3px 4px #fff;
  background-color: #f5f4f5;
}

.profileWrap {
  padding: 50px;
  background-color: #f5f4f5;
  border-radius: 50px;
  box-shadow: 3px 3px 4px #c7c7c7, -3px -3px 4px #fff;
}

#profileImg {
  width: 120px;
  height: auto;
}

.profileWrap #logo {
  /* transform: translate(-50%, 0px); */
  font-size: 3em;
  color: rgb(0, 0, 0);
  animation: vars 3s cubic-bezier(0, 0, 0, 0.96) infinite;
  line-height: 1;
  text-align: center;
  font-weight: normal;
  font-family: "able_studiodoguVF", sans-serif;
}
.profileWrap p {
  word-break: keep-all;
  font-size: 16px;
}

footer {
  position: relative;
  display: block;
  margin-bottom: 50px;
  text-align: center;
}
#a_nagizin {
  background-color: thistle;
}
@keyframes vars {
  0% {
    font-variation-settings: "wdth" 0;
  }

  40% {
    font-variation-settings: "wdth" 200;
  }

  60% {
    font-variation-settings: "wdth" 200;
  }

  100% {
    font-variation-settings: "wdth" 0;
  }
}
@media only screen and (max-width: 1000px) {
  .XYZcontainer {
    width: 100vw;
  }
  .profileWrap {
    padding: 25px;
    border-radius: 50px;
  }
  .profileWrap p {
    font-size: 14px;
  }
  .XYZtitle {
    padding: 25px;
    border-radius: 50px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 600px) {
  .profileWrap #logo {
    font-size: 2em;
  }
}
