@font-face {
  font-family: Cubic;
  src: url(./Cubic_11_v1.430_ext.woff2);
}
* {
  font-family: Cubic;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  background: #2f2f2f;
  color: aliceblue;
  font-family: Cubic;
}
body a {
  text-decoration: none;
}

.container {
  width: 80vw;
  height: 100%;
}
.container .card {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 2rem;
  overflow: auto;
  flex-wrap: wrap;
}
.container .profile {
  width: 100%;
}
.container .contacts img {
  height: 2rem;
  margin: 0.5em;
}
.container .break {
  flex-basis: 100%;
  width: 0;
}

.profile .ChName,
.profile .EnName {
  display: inline-flex;
  margin: 0.3em 0em 0.5em 0.1em;
  white-space: nowrap;
}
.profile .EnName {
  margin: 0.3em 0em 1em 0.3em;
  color: #b25978;
}
.profile .job {
  display: inline-flex;
  margin: 0.3em;
  margin-right: 0;
  white-space: nowrap;
}
.profile .intro {
  margin: 1.5em 0.5em 1.5em;
  line-height: 2em;
}
.profile .intro a {
  word-break: keep-all;
  white-space: pre;
  overflow-wrap: normal;
}

.section-title {
  max-width: 13em;
  margin-left: 2rem;
  padding-bottom: 0.2rem;
  border-bottom: #60a0af 3px solid;
  color: #60a0af;
}

.distributions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  margin-left: 1rem;
  overflow-x: hidden;
}
.distributions::after {
  position: absolute;
  width: 200vw;
  height: 100%;
  content: "";
  background-image: url(./images/dontDonate.png);
  background-repeat: repeat;
  animation: slide calc(1s * var(--vw) * var(--vw) / 200) linear infinite;
  pointer-events: none;
}

.distribution {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0.5rem;
  margin: 0.5rem;
  color: ghostwhite;
  background-color: #60a0af;
  border-radius: 0.5rem;
  font-weight: bold;
  word-break: normal;
  white-space: normal;
  overflow-wrap: normal;
  cursor: copy;
}
.distribution a {
  color: ghostwhite;
}

@keyframes slide {
  from {
    background-position-x: 0%;
  }
  to {
    background-position-x: calc(var(--vw) / 3 * 100% - 5%);
  }
}/*# sourceMappingURL=style.css.map */