*, *::before, *::after {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, p, ul, ol, li {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

html {
  font-size: 62.5%;
  background-color: #2a2a2a;
}

body {
  color: #333;
  font-size: 1.6rem;
}

.bg-text {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  font-family: "Inter", sans-serif;
  font-weight: bold;
  font-size: 16.1rem;
  line-height: 1;
  color: rgba(245, 245, 245, 0.2);
}

.profile-card {
  position: relative;
  max-width: 760px;
  height: 410px;
  margin-top: 100px;
  margin-inline: auto;
  border-radius: 30px;
  background-image: url(./img/bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100% 72%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.profile-card::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  content: "";
  width: 70px;
  height: 70px;
  background-image: url(./img/radioactive_white.png);
  background-repeat: none;
  background-size: contain;
  background-position: center;
  opacity: 0.8;
  animation: kaiten infinite linear 9s;
}

@keyframes kaiten {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.profile-card-bg {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background-color: rgba(62, 62, 62, 0.2);
}

.profile-card-text {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
  width: 55%;
  padding-block: 20px;
  padding-left: 20px;
  border-radius: 30px 0 0 30px;
  font-family: "Comfortaa", sans-serif;
}

.profile-card-text-name {
  color: #fff;
  font-size: 5.8rem;
}

.profile-card-text-link ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.profile-card-text-link li {
  background-color: rgba(180, 180, 180, 0.2);
  border-radius: 50px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(155, 148, 148, 0.5);
  transition: 0.5s;
}
.profile-card-text-link li:hover {
  transform: translateY(2px);
}
.profile-card-text-link a, .profile-card-text-link a:hover, .profile-card-text-link a:active, .profile-card-text-link a:visited {
  display: block;
  padding-inline: 35px;
  padding-block: 13px;
  color: #fff;
  text-decoration: none;
  width: 100%;
  height: 100%;
}
.profile-card-text-link .pixiv:hover {
  background-color: rgba(32, 123, 188, 0.2);
}
.profile-card-text-link .tumblr:hover {
  background-color: rgba(32, 63, 188, 0.2);
}
.profile-card-text-link .chara:hover {
  background-color: rgba(184, 78, 57, 0.2);
}
.profile-card-text-link .bluesky:hover {
  background-color: rgba(0, 178, 201, 0.2);
}
.profile-card-text-link .marshmallow:hover {
  background-color: rgba(239, 95, 167, 0.2);
}
.profile-card-text-link .wavebox:hover {
  background-color: rgba(188, 185, 32, 0.2);
}

@media screen and (max-width: 900px) {
  .bg-text {
    position: relative;
    margin-top: 20px;
    font-size: 6.1333333333vw;
    text-align: center;
    line-height: 1;
  }
  .profile-card {
    margin-top: 30px;
  }
}
@media screen and (max-width: 650px) {
  .profile-card::after {
    top: 20px;
    bottom: inherit;
  }
  .profile-card-text-name {
    font-size: 11.2vw;
  }
  .profile-card-text {
    width: 100%;
  }
  .profile-card-text-link li {
    font-size: 1.3rem;
  }
}/*# sourceMappingURL=style.css.map */